-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (85 loc) · 4.36 KB
/
index.html
File metadata and controls
97 lines (85 loc) · 4.36 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Menager</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/alerts.css">
<script src="js/dateRestrict.js" defer></script>
<script src="js/main.js" defer type="module"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;900&display=swap" rel="stylesheet">
</head>
<body>
<div class="alert-block-site">
<div class="alert">
<p class="alert-message"></p>
<div class="btns-visible info-btns flex-standard">
<button type="submit" class="alert-btn alert-ok-btn">OK</button>
</div>
<div class="confirm-btns flex-standard">
<button type="submit" class="alert-btn alert-yes-btn">YES</button>
<button type="submit" class="alert-btn alert-no-btn">NO</button>
</div>
</div>
</div>
<span id="whole-content">
<header id="header">
<h1><a href="index.html">Task Menager</a></h1>
</header>
<main class="flex-standard">
<section class="tasks-container">
<div class="add-task-box">
<input type="text" name="add-task-title" id="add-task-title" placeholder="Task title" required>
<div>
<label for="add-task-deadline" class="add-task-deadline-label">Task dedline:</label>
<input type="date" name="add-task-deadline" id="add-task-deadline">
</div>
<button id="add-task" class="flex-standard" type="submit">
<img src="svg/plus_icon.svg" alt="plus icon">
<h4>Add task</h4>
</button>
</div>
<section id="tasks">
<!-- temporary template -->
<!-- <div class="task task-1 flex-standard">
<input type="checkbox" name="done" id="done">
<label for="done">DONE</label>
<h4>task title</h4>
<p>x days left</p>
<button class="edit-task-btn">EDIT</button>
<button>DELETE</button>
</div> -->
</section>
</section>
<section class="task-content">
<!-- <h3 id="task-title"></h3> -->
<div class="task-content-top flex-standard">
<input type="text" name="" id="task-title" disabled placeholder="Select a task from list">
<button class="edit-title-btn svg-button"><img src="svg/edit1_icon.svg" class="edit-title-img"></button>
</div>
<textarea name="task-edit-field" id="task-edit-field" cols="30" rows="10" disabled></textarea>
<div class="content-buttons">
<!-- <div class="function-buttons">
<div class="test" style="width:30px; height:30px;background:red;"></div>
<div class="test" style="width:30px; height:30px;background:red;"></div>
<div class="test" style="width:30px; height:30px;background:red;"></div>
<div class="test" style="width:30px; height:30px;background:red;"></div>
</div> -->
<div class="content-manage-buttons">
<button type="submit" class="content-manage-button" data-mode="edit">EDIT</button>
</div>
</div>
</section>
</main>
</span>
<!-- <img src="svg/checkmark-xs-svgrepo-com.svg" alt="" width="50px"> -->
<!-- <button id="dev-btn">SHOW LOCALSTORAGE</button>
<button id="dev-clear-storage">CLEAR STORAGE</button> -->
</body>