-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (64 loc) · 3.81 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Playwrite+MX:[email protected]&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<title>ToDo List</title>
</head>
<body>
<section id="todo-index">
<div id="landingpage" class="flex justify-center align-center">
<img src="images/girl3.png" alt="" width="20%">
<div>
<h1 class="lg-txt" id="todoindex-text">ToDo</h1>
<button id="signup">Sign Up</button>
<button id="login">Login</button>
</div>
</div>
<div id="signup-page" class="flex justify-center align-center">
<img src="images/regtodo.png" alt="" width="20%">
<div class="flex-col justify-center align-center">
<h2 class="lg-txt" style="text-align: center; margin-bottom: 20px;">Register Details</h2>
<form action="" class="flex-col justify-center align-center gap-25" id="registration-form">
<span class="error-msg" id="empty-field">Empty Field</span>
<input type="text" placeholder="Name" id="name" class="right-format">
<div class="flex-col justify-center align-center" style="position: relative;">
<span class="error-msg">Wrong Email Format</span>
<input type="text" placeholder="Email" id="email" class="right-format">
</div>
<input type="text" placeholder="Username" id="username" class="right-format">
<div class="flex-col justify-center align-center">
<span class="error-msg">Password must be at least 8 characters and contain letters and numbers</span>
<input type="password" placeholder="Password" id="password" class="right-format">
</div>
<div class="flex-col justify-center align-center">
<span class="error-msg">Incorrect Password</span>
<input type="password" placeholder="Confirm Password" id="confirm-password" class="right-format">
</div>
<span class="small-text">Already Registered? <a href="#" id="login-link">Login</a></span>
<button type="submit" id="register">Register</button>
</form>
</div>
</div>
<div id="login-page" class="flex-col justify-center align-center">
<img src="images/todo1.png" alt="" width="15%">
<h2 class="lg-txt" style="margin-bottom: 30px;">Login</h2>
<form action="" class="flex-col justify-center align-center gap-10" id="login-form">
<span class="error-msg" id="empty-field-login">Empty Field</span>
<div class="flex-col justify-center align-center" style="position: relative;">
<span class="error-msg">Wrong Email Format</span>
<input type="text" placeholder="Email" class="right-format" id="login-username">
</div>
<input type="password" placeholder="Password" class="right-format" id="login-password">
<span class="small-text">Not Registered? <a href="#" id="signup-link">Sign Up</a></span>
<button type="submit" id="login-btn">Login</button>
</form>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>
</html>