-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 2.35 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
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/main.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>0 C.E.</title>
</head>
<body>
<header>
<h1>0 C.E.</h1>
</header>
<main>
<section id="login">
<form id="login-form">
<input type="email" id="login-email" name="email" placeholder="Email" required>
<input type="password" id="login-password" name="password" placeholder="Password" required>
<button type="submit">Login</button>
</form>
<a id="go-to-login">Don't have an account? <span class="link-color">Register</span></a>
</section>
<section id="register">
<form id="register-form">
<input type="text" id="register-username" name="username" placeholder="Username" required>
<input type="email" id="register-email" name="email" placeholder="Email" required>
<div>
<input type="password" id="register-password" name="password" placeholder="Password" required>
<input class="show-password-check" id="show-password-input" type="checkbox" tabindex="-1">
<label class="show-password" for="show-password-input" title="Show Password"></label>
<progress id="password-strength" class="hidden"></progress>
</div>
<div>
<input type="password" id="register-password-confirm" name="password-confirm"
placeholder="Confirm password" required>
<input class="show-password-check" id="show-password-confirm-input" type="checkbox" tabindex="-1">
<label class="show-password" for="show-password-confirm-input" title="Show Password"></label>
</div>
<button type="submit">Register</button>
</form>
<a id="go-to-register">Already have an account? <span class="link-color">Login</span></a>
</section>
</main>
<footer>Vianney Veremme - Copyright ©</footer>
<script src="js/main.js"></script>
<script src="js/index.js" defer></script>
<script src="js/authentication.js" defer></script>
</body>
</html>