-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (56 loc) · 2.48 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
<html>
<head>
<meta charset="UTF-8"/>
<script data-main="console" src="//cdnjs.cloudflare.com/ajax/libs/require.js/2.2.0/require.js"></script>
<link type="text/css" rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<!--
<link type="text/css" rel="stylesheet" href="//cdn.jsdelivr.net/npm/[email protected]/releases/picnic.min.css"/>
-->
<link type="text/css" rel="stylesheet" href="console.css"/>
<link type="text/css" rel="stylesheet" href="console_mono.css"/>
<link type="text/css" rel="stylesheet" href="css/color.css"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<div id="layer0" class="flexlayer">
<div id="header" class="layerHeader">
<div id="layer0Menu" class="menubar">
<span id="authInfo">
<span class="username"></span>
</span>
<div style="display: none;">
<a class="button" id="signIn" href="signIn">sign in</a>
<a class="button" id="signOut" class="clickable">sign out</a>
<a class="button" id="but_servers" href="/status">
servers
<b id="errorNotif" class="alert" style="border-radius:50%; position: absolute; width: 1em; display: none">!</b>
</a>
<a class="button" id="but_users" href="#users">users</a>
<a class="button" class="clickable" onclick="prompt_publish()">publish</a>
<a class="button" href="#settings"><i class="fa fa-cog"></i></a>
</div>
<a class="button" id="but_log" href="#log">log</a>
<a class="button" id="but_files" href="#search=^/">files</a>
<a class="button" id="but_inprogress" href="#search=^/">in progress</a>
<a class="button" id="but_errors" href='#search={"sync_error":{"$exists":true}, "sync_disabled":{"$exists":false},"deleted":{"$ne":true}}'>errors</a>
<!--
<a class="button" id="but_locks" href="#locks">locks</a>
-->
<!--
<a class="button" href="/status"><i class="fa fa-info"></i>
<b id="errorNotif" class="alert" style="border-radius:50%; position: absolute; width: 1em; display: none">!</b>
</a>
<a class="button" href="#settings">⚙</a>
-->
</div>
</div>
<div id="layer0Content" class="layerWrapper">
<div id="contents" class="layerContent"></div>
<div id="layer0SidePanel" class="layerPanel"></div>
</div>
</div>
</body>
</html>