forked from commonsguy/cw-omnibus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.55 KB
/
index.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
<!DOCTYPE html>
<html lang="en" manifest="checklist.manifest">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Checklist</title>
<meta name="viewport"
content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" />
<link rel="apple-touch-startup-image" href="splashscreen.png" />
<link rel="stylesheet" href="styles.css" />
<link rel="apple-touch-icon-precomposed"
href="apple-touch-icon-precomposed.png" />
</head>
<body>
<section>
<header>
<button type="button" id="sendmail">Mail</button>
<h1>Checklist</h1>
</header>
<article>
<form id="inputarea" onsubmit="addNewItem()">
<input type="text" name="name" id="name" maxlength="75"
autocorrect placeholder="Tap to enter a new item…" />
<button type="button" id="add">Add</button>
</form>
<ul id="maillist">
<li class="empty"><a href="" id="maillink">Mail remaining items</a></li>
</ul>
<p id="totals"><span id="tally1">Total: <span id="total">0</span></span>
<span id="tally2">Remaining: <span id="remaining">0</span></span></p>
<ul id="checklist">
<li class="empty">Loading…</li>
</ul>
</article>
<fieldset>
<button type="button" id="deletechecked">Delete Checked</button>
<button type="button" id="deleteall">Delete All</button>
</fieldset>
</section>
<script src="main.js"></script>
</body>
</html>