-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (45 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Room</title>
<link rel="shortcut icon" href="img/text.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<script src="https://www.gstatic.com/firebasejs/9.17.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.17.1/firebase-firestore.js"></script>
<link href="/assets/fontawesome/css/all.css" rel="stylesheet" />
</head>
<body>
<div id="app">
<div id="auth-section">
<h1>Chat Room</h1>
<div class="container2">
<input type="text" id="username" placeholder="Enter your username">
<input type="text" id="room-code" placeholder="Enter room code"><br>
</div>
<div class="container">
<button id="create-room-btn" style="margin:5px;">Create Room</button>
<button id="join-room-btn" style="margin:5px;">Join Room</button>
</div><br><br>
<p class="general" ><i><center>For general chat, enter code 'general'</center></i></p>
</div>
<div id="chat-section" style="display:none;">
<h2 id="room-title">Room: <span id="room-id"></span></h2>
<center><p class="clicktocopy" style="margin-top: -10px;"><i>Click the code to copy it!</i></p></center>
<div id="chat-box"></div>
<input type="text" id="message-input" placeholder="Type your message...">
<div class="container">
<button id="send-btn" style="margin:5px;">Send</button>
<button id="leave-room-btn" style="margin:5px;">Leave Room</button>
</div>
</div>
</div>
<footer>
<div class="madeby">Made by <a href="https://sprintingsnail69.github.io" target="_blank">SprintingSnail69</a> and <a href="https://cobblesteve01.github.io" target="_blank">cobblesteve01</a></div >
</footer>
<div id="toast2" class="toast2"><i class="fa-regular fa-circle-check" style="scale: 175%; color: rgb(0, 179, 0);;"></i> Room code copied to clipboard!</div>
<div id="toast" class="toast"><i class="fa-regular fa-circle-xmark" style="scale: 175%; color: red"></i> Your message contains profanity and was not sent.</div>
<script type="module" src="main.js"></script>
</body>
</html>