-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
executable file
·49 lines (48 loc) · 1.52 KB
/
settings.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ASPIRIN Study</title>
<link rel="stylesheet" href="style/base.css">
<script src="js/jquery-2.1.4.min.js"></script>
<!--[if IE]>
<script src="style/ie.js"></script>
<![endif]-->
</head>
<body>
<section id="todoapp">
<header id="header">
<h1>SETTINGS</h1>
</header>
<section id="main">
<div style="padding: 20px 0 10px"><img src="/images/settings.png" style="float:left;padding-right: 20px"> <h2>Configuration for application</h2></div>
<div class="menu-item">
<div class="question">Default Project </div>
<input id="default_project" placeholder="Enter Project Name" autofocus>
</div>
<br />
<div class="menu-item">
<button id="save_config">Save Configuration</button>
</div>
<br />
</section>
<section id="main">
<ul id="document-list"></ul>
</section>
<footer id="footer">
<span id="todo-count"></span>
<div id="sync-wrapper">
<div id="sync-success">Currently syncing</div>
<div id="sync-error">There was a problem syncing</div>
</div>
</footer>
</section>
<footer id="info">
<p>Global Network, 2015 RTI International. </p>
</footer>
<script src="//cdn.jsdelivr.net/pouchdb/4.0.0/pouchdb.min.js"></script>
<script src="js/base.js"></script>
<script src="js/questions.js"></script>
</body>
</html>