-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (59 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
60 lines (59 loc) · 2.31 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
<html>
<head>
<link rel="stylesheet" href="/css/style.css" type="text/css"/>
<link rel="stylesheet" href="/css/overlay.css" type="text/css"/>
<script src="jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="client.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.bazinga.overlay.js"></script>
<title>The 401</title>
</head>
<body>
<div id="app">
<div id="connect">
<header> the401 Chat </header>
<form action="#">
<label for="nick">Name</label>
<input id="nickInput" class="text" type="text" name="nick" value=""/>
<input id="connectButton" class="button" type="submit" name="" value="Join"/>
</fieldset>
</form>
</div>
<div id="loading"><p>loading</p></div>
<div id="chatArea">
<div id="emailTab">
<p class="verticalText" id="emailFriend">
<a href="#" data-overlay-id="theOverlay">Email</a></p>
</div>
<div id="purpleBackground">
<div id="log">
</div>
</div>
</div>
<div id="theOverlay" class="bazinga-overlay">
<div id="emailLoading" style="display:none;"><p>loading...</p></div>
<div id="emailLoaded">
<h1>Email a Friend</h1>
<form action="#">
<label>To:</label>
<input class="text" type="text" name="toInput" id="toInput" value=""/>
<lable>From:</label>
<input class="text" type="text" name="fromInput" id="fromInput" value=""/>
<lable>Message:</label>
<textarea name="bodyInput" id="bodyInput"></textarea>
<input class="button" type="submit" name="emailButton" id="emailButton" value="Send" style="margin-top: 10px"/>
</fieldset>
</form>
</div>
<a class="close-bazinga-overlay">x</a>
</div>
<div id="toolbar">
<ul id="status">
<li><a id="usersLink" href="#">5 users</a></li>
<li>uptime: <span id="uptime">?</span></li>
<li>memory: <span id="rss">?</span>mb RSS</li>
</ul>
<input tabindex="1" type="text" id="entry"/>
</div>
</body>
</html>