-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.html
More file actions
38 lines (38 loc) · 1.25 KB
/
setup.html
File metadata and controls
38 lines (38 loc) · 1.25 KB
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
<html>
<head>
<title>SmallTime Setup</title>
<meta charset="UTF-8">
<script>
window.nodeRequire = require;
delete window.require;
delete window.exports;
delete window.module;
</script>
<script type="text/javascript" src="./js/jquery-3.1.1.min.js"></script>
<!--<link href="css/milligram.css" rel="stylesheet">-->
<link href="css/styles.css" rel="stylesheet">
<body class="">
<div class="topbar">
<button class="button1 button2" id="Save">Save</button>
<button class="button1 button2" id="Cancel">Cancel</button>
</div>
<div id="body">
<fieldset>
<legend>Database Options</legend>
<input class="radio" type="radio" id="LocalDB" name="db" value="LocalDB">
<label for="LocalDB">Local Database</label>
<br/>
<input class="subOpt" type="checkbox" id="sync"><label>Sync</label>
<label for="syncUrl">URL</label><input class="url" id="syncUrl">
<br/>
<input class="radio" type="radio" id="RemoteDB" name="db" value="RemoteDB">
<label for="RemoteDB">Remote Database</label>
<br/>
<label class="subOpt" for="Url">URL</label><input class="url" id="Url">
</fieldset>
</div>
</body>
<script>
nodeRequire('./setup.js')
</script>
</html>