-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 907 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (24 loc) · 907 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test</title>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<form>
<input type="file" name="one" class="filesToUpload"><br>
<input type="file" name="two" class="filesToUpload"><br><br>
<input type="submit" name="test" id="envoyer" value="envoyer">
</form>
<br>
<h3 style="text-align: center">Fichier envoyer <span id="number">0</span></h3>
<div class="progress">
<div id="progressBarItem" style="width: 0%" class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" >
0%
</div>
</div>
<script src = "jquery.min.js"></script>
<script src = "script.js"></script>
</body>
</html>