This repository was archived by the owner on Apr 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (73 loc) · 3.44 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
<!DOCTYPE html>
<html lang="">
<head>
<meta name="copyright" content="Copyright (C) 2015-2022 Crawford Currie http://c-dot.co.uk license MIT">
<meta charset="UTF-8">
<meta name="Description" content="Squirrel independent online password safe">
<meta name="cache-control" content="public">
<meta name="cache-control" content="max-age=0">
<meta name="expires" content="BUILD_DATE">
<!-- for ios 7 style, multi-resolution icon of 152x152 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-barstyle" content="black-translucent">
<link rel="apple-touch-icon" href="images/squirrel.svg" />
<!-- for Chrome on Android, multi-resolution icon of 196x196 -->
<meta name="mobile-web-app-capable" content="yes">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="build-date" content="BUILD_DATE">
<link rel="shortcut icon" sizes="196x196" href="images/squirrel.svg" />
<title>Squirrel</title>
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<!-- The id is used by src/sq/styling to switch the jquery-ui theme -->
<link id="jQueryTheme" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" rel="stylesheet">
<link href="css/Icons.css" rel="stylesheet" />
<link href="css/Tree.css" rel="stylesheet" />
<link href="css/Dialogs.css" rel="stylesheet" />
<link href="css/Squirrel.css" rel="stylesheet" />
<script type="importmap">
{
"imports": {
"@rwap/jquery-ui-touch-punch": "./node_modules/@rwap/jquery-ui-touch-punch/jquery.ui.touch-punch.js",
"banana-i18n": "./node_modules/banana-i18n/dist/banana-i18n.js",
"jquery": "./node_modules/jquery/dist/jquery.js",
"jquery-ui": "./node_modules/jquery-ui/dist/jquery-ui.js",
"pngjs": "./node_modules/pngjs/browser.js",
"ui-contextmenu": "./node_modules/ui-contextmenu/jquery.ui-contextmenu.js"
}
}
</script>
<script type="module" src="src/browser/main.js"></script>
</head>
<body>
<div id="unauthenticated">
<h1>Squirrel</h1>
<div id="progress">
<span id="stage"></span>
</div>
<div id="splash"><img src="images/squirrel.svg" alt="Squirrel"/></div>
</div>
<div id="authenticated">
<div class="topbar">
<button id="undo_button" data-i18n-tooltip="tt-undo" data-icon="squirrel-icon-undo" data-i18n="undo"></button>
<button id="save_button" data-icon="squirrel-icon-save" data-i18n="save"></button>
<input id="search_input" data-i18n-placeholder="Search" value="" data-i18n-tooltip="tt-search" />
<button id="search_button" data-icon="squirrel-icon-search"></button>
<span id="search_hits"></span>
<button id="extras_button" data-i18n-tooltip="tt-tools" data-icon="squirrel-icon-gear" data-i18n="tt-tools"></button>
<a target="_blank">
<button id="help_button" data-icon="ui-icon-info">Help</button>
</a>
</div>
<div id="sites-node">
<div class="tree_title noselect">
<button class="tree_t_toggle" data-icon="squirrel-icon-folder-open"></button>
<div class="tree_t_info">
<span id="whoami" class="tree_t_i_key"></span>
</div>
</div>
</div>
</div>
<div id="debug_log"></div>
</body>
</html>