-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
53 lines (50 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Maddox's Chat Room</title>
<!--~ Meta Tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="title" content="Chat Room" />
<meta name="description" content="Welcome to a chat room!" />
<meta name="language" content="English" />
<!--* Favicon & CSS -->
<link rel="icon" type="image/x-icon" href="/assets/img/minecraft.png" />
<link rel="mask-icon" href="/assets/img/minecraft.png" color="#111" />
<link rel="stylesheet" href="assets/css/main.css" type="text/css" />
<!--^ Scripts -->
<script type="module" src="assets/js/main.js"></script>
<script type="module" src="assets/js/effects.js" defer></script>
<noscript
>Your browser doesn't have JavaScript enabled. Please enable JavaScript or
switch to a browser that supports it.</noscript
>
</head>
<body>
<button id="signin" class="signin">
<img src="./assets/svg/google.svg" alt="Google Logo" />
Sign in with Google
</button>
<div class="title">Maddox's Chat Room</div>
<div id="login_for_nerd">Sign in to view chats</div>
<div class="username" id="username"></div>
<!-- displays username when logged in -->
<label>
<input type="text" id="message" placeholder="Message" />
</label>
<button id="send">Send</button>
<!-- sends a message (does nothing rn) -->
<button id="sign_out_button">Sign Out</button>
<div id="chat"></div>
<footer>
<a
href="https://github.com/maddox05/chat-app"
class="made-by"
target="_blank"
rel="noopener noreferrer"
>Made with 💙 by Maddox</a
>
</footer>
</body>
</html>