-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UManager</title>
<link rel="stylesheet" href="bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/dist/css/font-awesome.min.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/icons.css">
</head>
<body>
<div class="container" style="margin-top:10px; margin-bottom: 10px">
<div class="row">
<div class="col">
<div class="btn-group btn-group-lg" role="group">
<button id="fxbtn" type="button" class="btn btn-info">Directory</button>
<button id="home" type="button" class="btn btn-info"><i class="fa fa-home"></i> Home</button>
<button id="back" type="button" class="btn btn-info">Back</button>
</div><br><br>
<input id="seldir" type="file" webkitdirectory style="display: none" />
<div id="tags"></div><br>
<div id="tag-search">
<button id="dd-toggle" onclick="tagsearch.dropdownToggle()" class="btn btn-primary">Search Tags <i class="fa fa-caret-down"></i></button>
<div id="tagdropdown" class="dropdown-content">
<input type="text" placeholder="Search Tag" id="searchbox" onkeyup="tagsearch.searchTags()">
<div id=fulltaglist style="overflow-y:scroll;max-height:222px;"></div>
</div>
</div><br>
<div class="btn-group btn-group-sm" role="group">
<button id="createtag" type="button" class="btn btn-info">Create New Tag</button>
<button id="deletetag" type="button" class="btn btn-info">Delete Tag</button>
</div>
<div class="btn-group btn-group-sm" role="group">
<button id="tagmode" type="button" class="btn btn-primary">Mode</button>
</div><br><br>
<div id="quick-access"></div><br>
</div>
<div class="col" style="max-height:95vh; overflow-y: scroll">
<div id="listed-folders"></div><div id="listed-files"></div>
</div>
</div>
</div>
<script src="render.js"></script>
<script src="initial.js"></script>
<script src="view\contextmenu.js"></script>
</body>
</html>