-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.html
26 lines (24 loc) · 961 Bytes
/
upload.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container" style="margin-top: 30px;">
<div class="row">
<div class="col-lg-8 col-sm-6 col-12">
<div class="input-group">
<input type="text" class="form-control" οnkeydοwn="return false;" οnpaste="return false;" placeholder="Select file...">
<label class="input-group-btn">
<span class="btn btn-primary">
<i class="glyphicon glyphicon-folder-open"></i>
Browse… <input type="file" style="display: none;" multiple>
</span>
</label>
</div>
</div>
</div>
</div>
</body>