-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
executable file
·107 lines (83 loc) · 3.88 KB
/
index.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=3.0, user-scalable=0" />
<title>Onyx Web Development Nuggets - DropzoneJS example with everything you will need, translations, custom preview and a powerful PHP code to handle upload/delete file</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="https://onyxdev.net/files/assets/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" href="https://onyxdev.net/files/assets/images/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://onyxdev.net/files/assets/images/favicons/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="https://onyxdev.net/files/assets/images/favicons/manifest.json">
<link rel="mask-icon" href="https://onyxdev.net/files/assets/images/favicons/safari-pinned-tab.svg" color="#34b2a7">
<link rel="shortcut icon" href="https://onyxdev.net/files/assets/images/favicons/favicon.ico">
<meta name="msapplication-config" content="https://onyxdev.net/files/assets/images/favicons/browserconfig.xml">
<meta name="theme-color" content="#34b2a7">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,500,600,700|Open+Sans" rel="stylesheet">
<!-- Libraries/Plugins -->
<link id="bootstrap-css" href="assets/css/bootstrap.min.css" rel="stylesheet">
<link id="dropzone-css" href="assets/css/dropzone.css" rel="stylesheet">
<!-- Icons Library -->
<link id="font-awesome-css" href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Main CSS -->
<link id="onyx-css" href="style.css" rel="stylesheet">
</head>
<body>
<!-- Wrapper -->
<div class="wrapper">
<section class="container-fluid inner-page">
<div class="row">
<div class="col-xl-6 offset-xl-3 col-lg-6 offset-lg-3 col-md-12 full-dark-bg">
<!-- Files section -->
<h4 class="section-sub-title"><span>Upload</span> Your Files</h4>
<form action="file-upload.php" class="dropzone files-container">
<div class="fallback">
<input name="file" type="file" multiple />
</div>
</form>
<!-- Notes -->
<span>Only JPG, PNG, PDF, DOC (Word), XLS (Excel), PPT, ODT and RTF files types are supported.</span>
<span>Maximum file size is 25MB.</span>
<!-- Uploaded files section -->
<h4 class="section-sub-title"><span>Uploaded</span> Files (<span class="uploaded-files-count">0</span>)</h4>
<span class="no-files-uploaded">No files uploaded yet.</span>
<!-- Preview collection of uploaded documents -->
<div class="preview-container dz-preview uploaded-files">
<div id="previews">
<div id="onyx-dropzone-template">
<div class="onyx-dropzone-info">
<div class="thumb-container">
<img data-dz-thumbnail />
</div>
<div class="details">
<div>
<span data-dz-name></span> <span data-dz-size></span>
</div>
<div class="dz-progress"><span class="dz-upload" data-dz-uploadprogress></span></div>
<div class="dz-error-message"><span data-dz-errormessage></span></div>
<div class="actions">
<a href="#!" data-dz-remove><i class="fa fa-times"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Warnings -->
<div id="warnings">
<span>Warnings will go here!</span>
</div>
</div>
</div><!-- /End row -->
</section>
</div>
<!-- /Wrapper -->
<!-- JQuery -->
<script src="assets/js/jquery-1.10.2.min.js"></script>
<!-- Dropzone JS -->
<script src="assets/js/dropzone.min.js"></script>
<!-- Main JS file -->
<script src="assets/js/scripts.js"></script>
</body>
</html>