-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
68 lines (49 loc) · 1.61 KB
/
index.php
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
<?php
include("password_protect.php");
?>
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>sixstepsrecords Media</title>
<!-- Include our stylesheet -->
<link href="assets/css/styles.css" rel="stylesheet"/>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body class="volume">
<header>
<div class="content">
<h1>sixstepsrecords - Media</h1>
<!-- Insert Content BELOW -->
<!-- Insert Content ABOVE -->
</div>
</header>
<div class="filemanager">
<div class="upload">
<input type="hidden" name="directory" id="directory" />
<input type="file" name="file" id="file" style="display: none;"/>
<button id="uploadButton"><i class="fa fa-cloud-upload"></i></button>
<div class="filename-drawer">
<button id="submitFile"><span id="filename"></span> <i class="fa fa-arrow-circle-o-right"></i></button>
</div>
</div>
<div class="search">
<input type="search" placeholder="Find a file.." />
</div>
<div class="breadcrumbs"></div>
<ul class="data"></ul>
<div class="nothingfound">
<div class="nofiles"></div>
<span>No files here.</span>
</div>
<div class="loading">
<img src="assets/img/loading.gif" />
</div>
</div>
<!-- Include our script files -->
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>