-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlobby.html
More file actions
104 lines (98 loc) · 2.77 KB
/
lobby.html
File metadata and controls
104 lines (98 loc) · 2.77 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Adda - Lobby</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="./images/logo.png" />
<link
rel="stylesheet"
type="text/css"
media="screen"
href="styles/main.css"
/>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="styles/lobby.css"
/>
</head>
<body>
<header id="nav">
<div class="nav--list">
<a href="index.html">
<h3 id="logo">
<img src="./images/logo.png" alt="Site Logo" />
</h3>
</a>
</div>
<div id="nav__links">
<a class="nav__link" id="create__room__btn" href="lobby.html">
Create Room
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
fill="#ede0e0"
viewBox="0 0 24 24"
>
<path
d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6 13h-5v5h-2v-5h-5v-2h5v-5h2v5h5v2z"
/>
</svg>
</a>
</div>
</header>
<main id="room__lobby__container">
<div id="form__container">
<div id="form__container__header">
<p>👋 Create or Join Room</p>
</div>
<form id="lobby__form">
<div class="form__field__wrapper">
<label>Your Name</label>
<input
type="text"
name="name"
required
placeholder="Enter your display name..."
/>
</div>
<div class="form__field__wrapper">
<label
>Room ID # <br /><span
style="color: #8446e9; font-size: 13px; font-style: italic"
>
💡 If you are creating a room, leave it blank.</span
>
</label>
<input
type="number"
type="text"
name="room"
placeholder="Enter numbers only..."
/>
</div>
<div class="form__field__wrapper">
<button type="submit">
Go to Room
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
>
<path
d="M13.025 1l-2.847 2.828 6.176 6.176h-16.354v3.992h16.354l-6.176 6.176 2.847 2.828 10.975-11z"
/>
</svg>
</button>
</div>
</form>
</div>
</main>
</body>
<script type="text/javascript" src="js/lobby.js"></script>
</html>