-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome_interval.html
71 lines (68 loc) · 3.79 KB
/
welcome_interval.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="A Tizen Web UI FW master-detail template generated by Tizen Web IDE" />
<title>Tizen Web IDE - Template - Tizen - Tizen Web UI Framework
- Master-Detail</title>
<!--NOTE:
jquery.js and web-ui-fw.js must be included.
DO NOT REMOVE below code!
-->
<script src="/usr/share/tizen-web-ui-fw/latest/js/jquery.js"></script>
<script src="/usr/share/tizen-web-ui-fw/latest/js/tizen-web-ui-fw-libs.js"></script>
<script src="/usr/share/tizen-web-ui-fw/latest/js/tizen-web-ui-fw.js" data-framework-theme="tizen-white"></script>
<script type="text/javascript" src="./js/main.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
<script type="text/javascript" src="./js/alarms.js"></script>
<script type="text/javascript" src="./js/idbstore.js"></script>
<script type="text/javascript" src="./js/MoodiModoStore.js"></script>
<link rel="stylesheet" type="text/css" href="./css/style.css" />
</head>
<body>
<!-- Page One -->
<div id="secondPage" data-role="page">
<div data-role="header" data-position="fixed">
<h1>MoodiModo</h1>
</div>
<!-- /header -->
<div data-role="content">
<h3 id="pageHeader">Report Interval</h3>
<p id="welcomeText">To ensure you never forget to report your mood, you can choose to set a reminder. This reminder will bring you to a simple screen where you can enter your mood.</p>
<div id="listContent" data-role="fieldcontain">
<nav id="secondNav" class="listItems">
<form name="notificationOptionsForm" method="get" onsubmit="return false;">
<ul id="secondList" data-role="listview">
<li class="text">
<input type="radio" data-inline="true" name="notificationOption" id="radio-0" value="0" onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '0');">
<a onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '0');">Never</a>
</li>
<li class="text">
<input type="radio" data-inline="true" name="notificationOption" id="radio-1" value="1" onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '1');">
<a onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '1');">Hourly</a>
</li>
<li class="text">
<input type="radio" data-inline="true" name="notificationOption" id="radio-2" value="2" onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '2');" checked="checked">
<a onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '2');">Every three hours</a>
</li>
<li class="text">
<input type="radio" data-inline="true" name="notificationOption" id="radio-3" value="3" onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '3');">
<a onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '3');">Twice daily</a>
</li>
<li class="text">
<input type="radio" data-inline="true" name="notificationOption" id="radio-4" value="4" onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '4');">
<a onclick="setCheckedValue(document.forms['notificationOptionsForm'].elements['notificationOption'], '4');">Daily</a>
</li>
</ul>
</form>
<a href="#home">
<button onclick="welcomeWizardCompleted();">Done</button>
</a>
</nav>
</div>
</div>
<!-- /content -->
</div>
<!-- /page -->
</body>
</html>