-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathShowTimerReminderEdit.html
More file actions
77 lines (75 loc) · 2.34 KB
/
ShowTimerReminderEdit.html
File metadata and controls
77 lines (75 loc) · 2.34 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
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<title>reminder entry (Show Timer)</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="STcommon.css" type="text/css" />
<link rel="stylesheet" href="ShowTimerReminderEdit.css" type="text/css" />
</head>
<body>
<datalist id="profiles" data-st-proftype="reminders">
</datalist>
<div><a href="#saveall">Go to commit</a>
Profile name:
<input type="text" list="profiles" name="prof" id="prof"
tabindex="1">
<button name="get" onclick="handle_fetch()" tabindex="2">fetch</button>
<input name="getbackup" type="checkbox" id="getbackup">
get backup instead</input>
<span id="fetchmsg"></span>
</div>
<hr />
<div id="remindproto">
<div class="reminderentry" data-divtype="reminderContainer">
<div>#<span name="remindnumdisp"></span>
Reminder begin:
<!-- <input type="time" > -->
<!-- unfortunately, some browsers (Chrome) drop the seconds
on a time type, so will have to do text all around -->
<input type="text" name="reminderbegin">
<span name="beginerr"></span>
</div>
<div>Reminder local time:
<span class="loctime" name="locbegin">00:00:00</span>
</div>
<div>Reminder text:
<input type="text" maxsize="40" size="40" name="remindertxt">
</div>
<div class="actionButtons">
<button name="save">save</button>
<button name="samePlusHr">dup + 1 hr</button>
<button disabled name="undo">undo</button>
<button name="rm">DELETE!</button>
<span name="miscmsg"></span>
</div>
</div>
</div>
<div id="reminders">
</div>
<hr />
<div>
<button name="newremind" id="newrem" onclick="ins_blank_rem()">
new reminder
</button>
</div>
<hr />
<div>
<button name="saveall" id="saveall"
onclick="commit2localStorage();">commit</button>
<span id="commitmsg"></span>
</div>
<hr />
<div>export area
<textarea name="exp"
id="export" cols="80" rows="10"></textarea>
<div>
<button onclick="fill_export_area();">export</button>
<button onclick="slurp_export_area();">import</button>
</div>
</div>
<div>
<a href="#top">go to top of page</a>
</div>
<script type="text/javascript" src="STcommon.js" ></script>
<script type="text/javascript" src="ShowTimerReminderEdit.js" ></script>
</body>
</html>