-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
92 lines (68 loc) · 2.56 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en" manifest="manifest.php">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; user-scalable=no; width=device-width; target-densityDpi=medium-dpi">
<meta name="format-detection" content="telephone=no">
<link rel="apple-touch-icon" href="icon.png">
<link rel="apple-touch-startup-image" href="default.png">
<link href="style.css" rel="stylesheet" type="text/css">
<script src="jquery-1.4.min.js" type="text/javascript"></script>
<script src="webtoolkit.base64.js" type="text/javascript"></script>
<!-- <script src="manifest.js" type="text/javascript"></script> -->
<script src="script.js" type="text/javascript"></script>
<title>simplenote-html</title>
</head>
<body>
<div id="main" style="display: none">
<div id="about">
</div>
<div id="login">
<div class="header">
<h1 class="page-title">simplenote-html</h1>
</div>
<form id="loginForm">
<p><label for="email">email</label><input id="email" type="email" autocorrect="off" autocapitalize="off"></p>
<p><label for="password">password</label><input id="password" type="password"></p>
<p><label> </label><input type="submit" value="Log in"></p>
<p id="loginError"></p>
</form>
<p>Please read the <a href="about.html" class="action-about">about page</a> first!</p>
</div>
<div id="notes">
<div class="header">
<div class="button right action-refresh"><img src="refresh.png"></div>
<h1 class="page-title">simplenote-html</h1>
</div>
<div class="filter">
<input type="search" id="filter" placeholder="filter notes">
</div>
<ul>
</ul>
<div class="empty">
no notes
</div>
</div>
<div id="note">
<div class="header">
<div class="button left action-showList"><img src="list.png"></div>
<h1 class="page-title">note</h1>
</div>
<div class="body"></div>
</div>
<div id="templates" style="display:none">
<div class="note-list" id="note-list-template">
<span class="note-title" href="#">title</span>
<span class="modify">modify</span>
<span class="status"></span>
</div>
</div>
<div class="footer">
<a class="action-about left" href="#">about</a>
<a class="action-logout right" href="#">log out</a>
</div>
</div>
<div id="thinking">Thinking…</div>
</body>
</html>