-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (68 loc) · 3.18 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
<!DOCTYPE html>
<html manifest="manifest.appcache">
<head>
<meta charset="utf-8">
<meta http-equiv="pragma" content="no-cache">
<title>TokesApp</title>
<!-- Stable Building blocks -->
<link rel="stylesheet" type="text/css" href="shared/style/headers.css">
<link rel="stylesheet" type="text/css" href="shared/style/edit_mode.css">
<link rel="stylesheet" type="text/css" href="shared/style/input_areas.css">
<link rel="stylesheet" type="text/css" href="shared/style/switches.css">
<link rel="stylesheet" type="text/css" href="shared/style/confirm.css">
<link rel="stylesheet" type="text/css" href="shared/style_unstable/progress_activity.css">
<link rel="stylesheet" type="text/css" href="shared/style_unstable/lists.css">
<link rel="stylesheet" type="text/css" href="shared/style_unstable/tabs.css">
<!-- App styles -->
<link rel="stylesheet" type="text/css" href="style/root.css">
<link rel="stylesheet" type="text/css" href="style/common.css">
<link rel="stylesheet" type="text/css" href="style/sms.css">
<link rel="stylesheet" type="text/css" href="style/custom_dialog.css">
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/tokesServer.js"></script>
<script type="text/javascript" src="js/push_db.js"></script>
<script type="text/javascript" src="js/tokesApp.js"></script>
<script type="text/javascript" src="js/push.js"></script>
</head>
<body role="application">
<!--
<button type="button" value="" id="buttonRegisterApp">Register this application</button></br>
<button type="button" value="" id="buttonGetURL">Get Current URL</button></br>
<button type="button" value="" id="buttonClear">Clear Log</button></br>
<div id="logarea" style="border: 1px solid black"></div>
-->
<article id="self-nick-wrapper">
<section class="panel" role="region">
<header>
<h1 id="self-nick-header">Self-Nick</h1>
</header>
<form id="login-form">
<label for="self-nick">Type your Nick:</label>
<input id="self-nick" name="self-nick" type="text" value=""/>
</form>
<button id="login-button">
<span class="icon icon-close">Login</span>
</button>
</section>
</article>
<article id="main-window">
<section id="friend-list" class="panel" role="region">
<header class="view-header regular-header">
<h1 id="header-text" data-l10n-id="messages" aria-hidden="true">TokesApp</h1>
<form id="messages-tel-form">
<input id="receiver-input" type="text" name="tel" class="tel" />
<span id="clear-search" role="button" class="icon icon-clear"></span>
</form>
</header>
<article id="friends-container" class="view-body" data-type="list">
</article>
<form role="search" id="add-friend-form" class="bottom new-sms-form">
<button id="add-friend-button" disabled type="submit">Add Friend</button>
<p>
<input type="text" id="friend-to-add" name="friend-to-add" placeholder="Friend Nick"/>
</p>
</form>
</section>
</article>
</body>
</html>