-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (37 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
45 lines (37 loc) · 1.13 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Subir archivo con javascript y ajax </title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="principal">
<h1>Upload File</h1>
<form action="" id="form_subir">
<div class="form-1-2">
<label for="">File Upload:</label>
<input type="file" name="archivo" required>
</div>
<div class="barra">
<div class="barra_azul" id="barra_estado">
<span></span>
</div>
</div>
<div class="acciones">
<input type="submit" class="btn" value="enviar">
<input type="button" class="cancel" id="cancelar" value="cancelar">
</div>
<div class="DownloadOption">
<h4>Download Section</h4>
<button id="download-button">Download</button>
<a id="save-file">Save File</a>
<progress id="progress" value="0"></progress>
</div>
</form>
</div>
<script src="js/main.js"></script>
</body>
</html>