-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop.html
21 lines (21 loc) · 956 Bytes
/
top.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head><title>Simplest Chat</title>
<style>.formbox { display: none; }</style></head>
<body>
<section id="NameEntry" class="formbox">
<form onsubmit="changename(this.name.value); return false">Name: <input type="text" name="name" size="24" /><input type="button" value="Register" onclick="changename(this.form.name.value)" /></form>
</section>
<scrtion id="MainChat" class="formbox">
<section>
<button onclick="changemode(0)">Change Name</button>
</section>
<input type="text" size="16" style="border: none;font-size: 120%; font-style: italic;" id="NameView" />
<form action="chat.cgi" method="POST" name="chatform" onsubmit="this.submit(); this.chat.value = ''; return false">
<input type="hidden" name="name" /><br />
<input type="text" name="chat" size="64" />
<input type="submit" />
</form>
</section>
<script src="mode.js"></script>
</body>
</html>