-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
48 lines (37 loc) · 1.03 KB
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">
<title>Task Manager</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Task Manager</h1>
<!-- Auth Section -->
<div class="card">
<h2>Register</h2>
<input type="email" id="regEmail" placeholder="Email">
<input type="password" id="regPass" placeholder="Password">
<button onclick="register()">Register</button>
</div>
<div class="card">
<h2>Login</h2>
<input type="email" id="logEmail" placeholder="Email">
<input type="password" id="logPass" placeholder="Password">
<button onclick="login()">Login</button>
</div>
<!-- Task Section -->
<div class="card">
<h2>Add Task</h2>
<input type="text" id="taskName" placeholder="Task name">
<button onclick="addTask()">Add Task</button>
</div>
<!-- Task List -->
<div class="card">
<h2>Your Tasks</h2>
<button onclick="getTasks()">Load Tasks</button>
<ul id="taskList"></ul>
</div>
<script src="script.js"></script>
</body>
</html>