-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.17 KB
/
Copy pathindex.html
File metadata and controls
55 lines (55 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>PhotoPicker - simple JS picker for web forms</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- Compiled and minified CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./js/photopicker.js"></script>
<link rel="stylesheet" href="./css/main.css">
<script>
$(document).ready(function (){
$("#multiup").photopicker({
'fileListID':'fileList',
'inputName':'files[]',
'maxFiles':10,
});
});
</script>
</head>
<body>
<nav class="red" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="/" class="brand-logo"><span class="white-text">PhotoPicker</span></a>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col l12 s12 m12">
<form method="get" action="./index.html">
<table>
<tr>
<th>Gallery:</th>
<td>
<div id="multiup">
<div id="fileList"></div>
<i class="large material-icons grey-text">add_a_photo</i>
</div>
</td>
</tr>
<tr>
<th></th>
<td><button type="submit" class="btn">upload</button></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</body>
</html>