-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.html
More file actions
65 lines (65 loc) · 2.7 KB
/
settings.html
File metadata and controls
65 lines (65 loc) · 2.7 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
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
<!DOCTYPE html>
<!--
This file is part of Chronos. The LICENSE file at the top level of
this repository contains the full copyright notices and license terms.
-->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css"/>
<link rel="stylesheet" href="chronos.css"/>
</head>
<body>
<div class="container">
<form>
<h2>Settings
<a href="chronos.html" class="close" aria-label="Close">
<span aria-hidden="true">×</span>
</a>
</h2>
<div class="form-group">
<label class="control-label"
for="inputURL">Server Address</label>
<input id="inputURL"
class="form-control"
type="url"
autofocus="1"
required=""
placeholder="Server Address"></input>
</div>
<div class="form-group">
<label class="control-label"
for="inputDB">Database</label>
<input id="inputDB"
class="form-control"
type="text"
required=""
placeholder="Database"></input>
</div>
<div class="form-group">
<label class="control-label"
for="inputUser">User Name</label>
<input id="inputUser"
class="form-control"
type="text"
required=""
placeholder="User Name"></input>
</div>
<div class="form-group">
<label for="key">Key</label>
<pre id="key" class="form-control-static"></pre>
</div>
<button id="buttonRegister"
class="btn btn-lg btn-primary btn-block"
type="submit">Register</button>
<button id="buttonReset"
class="btn btn-danger btn-block"
type="button">Reset</button>
</form>
</div>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="settings.js"></script>
</body>
</html>