-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (40 loc) · 1.26 KB
/
index.html
File metadata and controls
49 lines (40 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StormChat! :DD</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="script.js"></script>
</head>
<body>
<header>
<h1>DingoStorm :3</h1>
</header>
<!-- Cat no workey -->
<script src="./oneko/oneko.js"></script>
<!-- Login form -->
<div class="centerXY">
<div id="login-form">
<h2>Login to StormChat!!!</h2>
<form name="login" id="login" method="post">
<label for="username-login">Username</label>
<input type="text" name="username-login">
<label for="password-login">Password</label>
<input type="password" name="password-login">
<input type="submit" value="Login">
</form>
</div>
<div id="error-message"></div>
</div>
<!-- Display messages -->
<div id="chat" class="removed">
<div id="messages"></div>
<form name="message_send" , id="msgBox">
<input type="text" name="message" placeholder="Type a message...">
</form>
<button id="scrollToggle" onclick="scrollToggle()">Autoscroll</button>
<button id="notifyToggle" onclick="notifyToggle()">Notifications</button>
</div>
</body>
</html>