-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login - ByteBrawlers</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1 id="title">ByteBrawlers</h1>
<p>Log in to Continue</p>
<form action="javascript:passInfo()" method="get" id="login">
<section>
<label for="username">Username:</label>
<input id="username" type="text" autocomplete="username" />
</section>
<section>
<label for="pass">Password:</label>
<input
id="pass"
type="password"
autocomplete="current-password"
/>
<br />
<br />
<div class="button-wrapper">
<input type="checkbox" id="pass-toggle" /><label
for="pass-toggle"
id="pass-toggle-label"
>Show Password</label
>
</div>
</section>
<div class="button-wrapper">
<input type="submit" id="submit" value="Login" />
</div>
</form>
<hr />
<footer>
Don't have an account? <a href="/signup/">Sign up</a> to continue!
</footer>
<div class="popup-wrapper"><div class="popup" id="error"></div></div>
<script src="script.js" type="module" defer></script>
</body>
</html>