forked from simogeo/Filemanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (54 loc) · 2.37 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>File Manager</title>
<link rel="stylesheet" type="text/css" href="styles/reset.css" />
<link rel="stylesheet" type="text/css"
href="scripts/jquery.filetree/jqueryFileTree.css" />
<link rel="stylesheet" type="text/css"
href="scripts/jquery.contextmenu/jquery.contextMenu.css" />
<link rel="stylesheet" type="text/css" href="styles/filemanager.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="styles/ie.css" />
<![endif]-->
</head>
<body>
<div>
<form id="uploader" method="post">
<button id="home" name="home" type="button" value="Home"> </button>
<h1></h1>
<div id="uploadresponse"></div>
<input id="mode" name="mode" type="hidden" value="add" /> <input
id="currentpath" name="currentpath" type="hidden" /> <input
id="newfile" name="newfile" type="file" />
<button id="upload" name="upload" type="submit" value="Upload"></button>
<button id="newfolder" name="newfolder" type="button" value="New Folder"></button>
<button id="grid" class="ON" type="button"> </button>
<button id="list" type="button"> </button>
</form>
<div id="splitter">
<div id="filetree"></div>
<div id="fileinfo">
<h1></h1>
</div>
</div>
<ul id="itemOptions" class="contextMenu">
<li class="select"><a href="#select"></a></li>
<li class="download"><a href="#download"></a></li>
<li class="rename"><a href="#rename"></a></li>
<li class="delete separator"><a href="#delete"></a></li>
</ul>
<script type="text/javascript" src="scripts/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="scripts/jquery.form.js"></script> <script
type="text/javascript" src="scripts/jquery.splitter/jquery.splitter.js"></script>
<script type="text/javascript"
src="scripts/jquery.filetree/jqueryFileTree.js"></script> <script
type="text/javascript"
src="scripts/jquery.contextmenu/jquery.contextMenu.js"></script> <script
type="text/javascript" src="scripts/jquery.impromptu-1.5.js"></script>
<script type="text/javascript" src="scripts/jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="scripts/filemanager.config.js"></script>
<script type="text/javascript" src="scripts/filemanager.js"></script></div>
</body>
</html>