-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathFrontEnd.html
41 lines (41 loc) · 1.24 KB
/
FrontEnd.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customized To-Do List App</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<h1>Customized To-Do List App</h1>
</header>
<main>
<section class="login">
<h2>Login</h2>
<form id="login-form">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</section>
<section class="to-do">
<h2>Your To-Do List</h2>
<ul id="to-do-list">
<!-- To-Do items will be populated here -->
</ul>
<form id="to-do-form">
<label for="task">Add Task:</label>
<input type="text" id="task" name="task" required>
<button type="submit">Add Task</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Customized To-Do List App. All Rights Reserved.</p>
</footer>
</body>
</html>