-
Notifications
You must be signed in to change notification settings - Fork 1
/
auth.html
50 lines (48 loc) · 1.91 KB
/
auth.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>
<head>
<title>Login/Register</title>
<link rel="stylesheet" href="css/auth.css">
</head>
<body>
<form class="color-picker">
<fieldset>
<legend class="visually-hidden">Pick a Color Scheme</legend>
<label class="visually-hidden" for="default">Default</label>
<input type="radio" name="theme" id="default" checked>
<label class="visually-hidden" for="purpleish">Purpleish</label>
<input type="radio" name="theme" id="purpleish">
<label class="visually-hidden" for="mint">Mint</label>
<input type="radio" name="theme" id="mint">
<label class="visually-hidden" for="miami">Miami</label>
<input type="radio" name="theme" id="miami">
<label class="visually-hidden" for="terra">Terra</label>
<input type="radio" name="theme" id="terra">
<label class="visually-hidden" for="dragon">Red Dragon</label>
<input type="radio" name="theme" id="dragon">
</fieldset>
</form>
<br>
<center>
<div id="register">
<h2>Register</h2>
<form id="registerForm">
<input type="text" id="username" placeholder="Username" required>
<input type="email" id="email" placeholder="Email" required>
<input type="password" id="password" placeholder="Password" required>
<button type="submit">Register</button>
</form>
</div>
<br>
<div id="login">
<h2>Login</h2>
<form id="loginForm">
<input type="email" id="loginEmail" placeholder="Email" required>
<input type="password" id="loginPassword" placeholder="Password" required>
<button type="submit">Login</button>
</form>
</div>
</center>
<script src="javascript/auth.js"></script>
</body>
</html>