-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecuperar.html
executable file
·30 lines (26 loc) · 1010 Bytes
/
recuperar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form method="post" enctype="multipart/form-data">
<h1>Recuperação de arquivo</h1>
<p>Selecione o arquivo e inform sua chave privada cifrada para recuperar o arquivo.</p>
<input type="hidden" name="idUsuarioAtual" value="1" id="idUsuarioAtual">
<table style="border: 1px solid;">
<tr>
<th>Arquivo</th>
<th>Dono</th>
<th></th>
</tr>
</table><br>
Senha:<br> <input type="password" name="senha" required> <br><br>
Chave Privada:<br> <input type="file" name="chave" required> <br><br>
<button type="submit" name="save">Baixar</button>
</form>
<script src="/HealthNet/assets/js/jquery.js"></script>
<script src="/HealthNet/assets/js/FileSaver.js"></script>
<script src="/HealthNet/assets/js/listarArquivos.js"></script>
<script src="/HealthNet/assets/js/recuperar.js"></script>
</body>
</html>