forked from TechieBoy/Volatile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docupload.html
74 lines (61 loc) · 2 KB
/
docupload.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<meta charset="utf-8">
<title>Upload Files</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/materialize.min.css">
<style>
#filedrag {
display: none;
font-weight: bold;
text-align: center;
padding: 1em 0;
margin: 1em 0;
color: #555;
border: 2px dashed #555;
border-radius: 7px;
cursor: default;
}
#filedrag.hover {
color: rgb(0, 128, 255);
border-color: rgb(0, 128, 255);
border-style: solid;
box-shadow: inset 0 3px 4px #888;
}
</style>
</head>
<body>
<div class="container">
<div class="section">
<h5>Upload Documents</h5>
</div>
<div class="divider"></div>
<form>
<div class="file-field input-field">
<div class="btn">
<span>Browse Files</span>
<input type="file" id="fileselect" name="fileselect[]" multiple="multiple" />
<div id="filedrag">or drop files here</div>
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text" placeholder="Upload multiple files" />
</div>
</div>
<div class="row"></div>
<div class="row"></div>
<div class="row" id="submitbutton">
<div class="col push-s6">
<div class="col push-s8">
<input type="submit" class="btn btn-register waves-effect waves-light" name="Upload Files" />
</div>
</div>
</div>
<div id="messages"></div>
</form>
</div>
<script src="lib/jquery.js"></script>
<script src="lib/idbkvstore.js"></script>
<script src="userconstants.js"></script>
<script src="js/fileupload.js"></script>
</body>
</html>