-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.html
98 lines (95 loc) · 2.92 KB
/
tasks.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
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tasks</title>
<link rel="stylesheet" href="tasks.css" />
<link rel="icon" href="NEW_FAVICON.png" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body style="background-color: #1e1e2e; height: 100vh; position: relative">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<div class="sidebar">
<div class="profile-picture">
<img
style="
height: 100px;
border-radius: 100%;
width: 100px;
margin-top: 100px;
object-fit: cover;
"
src="360_F_243123463_zTooub557xEWABDLk0jJklDyLSGl2jrr.jpg"
alt=""
/>
</div>
<div
style="
margin-top: 20px;
margin-bottom: 50px;
color: white;
font-family: Verdana, Geneva, Tahoma, sans-serif;
"
>
<b>Andrew Smith</b><br />
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="analytics.html"
>Overview</a
>
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="experimental.html"
>Reports</a
>
</div>
<div class="sidebar-element">
<a style="color: rgb(174, 169, 172)">Tasks</a>
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="revenue.html"
>Revenue</a
>
</div>
<div class="sidebar-element">
<a style="text-decoration: none; color: white" href="settings.html"
>Settings</a
>
</div>
</div>
<div class="navbar">
<p style="padding-left: 570px; padding-top: 125px">To-Do</p>
</div>
<div class="main-content">
<div class="tasks-container">
<!-- Task Input -->
<div class="task-input">
<input
type="text"
id="taskInput"
placeholder="Add a new task..."
class="form-control"
/>
<button id="addTaskBtn" class="btn">Add Task</button>
</div>
<!-- Task List -->
<div class="task-list">
<ul id="taskList">
<!-- Dynamic Task Items -->
</ul>
</div>
</div>
</div>
<script src="tasks.js"></script>
</body>
</html>