-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (82 loc) · 3.87 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
90
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tabler-icons/1.35.0/iconfont/tabler-icons.min.css" integrity="sha512-tpsEzNMLQS7w9imFSjbEOHdZav3/aObSESAL1y5jyJDoICFF2YwEdAHOPdOr1t+h8hTzar0flphxR76pd0V1zQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<h1 id="todoList"><img src="https://cdn.icon-icons.com/icons2/1859/PNG/512/checklist_117966.png"></h1>
<div class="changeTheme">
<svg xmlns="http://www.w3.org/2000/svg" class="icone" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0"></path>
<path d="M12 3l0 18"></path>
<path d="M12 9l4.65 -4.65"></path>
<path d="M12 14.3l7.37 -7.37"></path>
<path d="M12 19.6l8.85 -8.85"></path>
</svg>
Light & Dark
</div>
</nav>
<main id="main">
<section id="dateHeures">
<div id="dateHeure">
Nous sommes le <span id="date"></span>, il est <span id="heure"></span>.
</div>
</section>
<topSectionPC id="PC">
<section id="priorites">
<h2>Priorités</h2>
</section>
<section id="objectifs">
<h2>Objectifs</h2>
</section>
<section id="taches">
<h2>Tâches</h2>
</section>
<!--Ajout de la tâche/objectif/catégorie (Younes)-->
<button class="add" id="add">+</button>
<div id="overlay" class="overlay">
<div id="popup" class="popup">
<button class="btnClose" id="btnClose">X</button>
<h1>Créer une nouvelle tâche ou un nouvel objectif</h1>
<div class="btnAdd">
<button class="addTask" id="btnTask">Nouvelle tâche</option>
<button class="addObj" id="btnObjective">Nouvel objectif</option>
</div>
<form id="newTask" class="form">
<label for="taskName">Nom de la tâche</label><br>
<input type="text" id="taskName" name="taskName" size="50" required><br>
<label for="taskDesc">Description</label><br>
<textarea id="taskDesc" name="taskDesc" rows="6" cols="60" required></textarea><br>
<label for="taskDate">Date</label><br>
<input type="date" id="taskDate" name="taskDate" required><br>
<label for="taskTime">Heure</label><br>
<input type="time" id="taskTime" name="taskTime" required><br>
<input type="checkbox" id="taskFirst" name="taskFirst" value="Priorité">
<label for="taskFirst">Priorité</label>
<input type="submit" id="taskSubmit" value="Ajouter">
<input type="submit" id="taskCancel" value="Annuler">
</form>
<form id="newObjective" class="form">
<label for="objectiveName">Nom de l'objectif</label><br>
<input type="text" id="objectiveName" name="objectiveName" size="50" required><br>
<label for="objectiveDesc">Description</label><br>
<textarea id="objectiveDesc" name="objectiveDesc" rows="6" cols="60" required></textarea><br>
<input type="submit" id="objectiveSubmit" value="Ajouter">
<input type="submit" id="objectiveCancel" value="Annuler">
</form>
</div>
</div>
</topSectionPC>
</main>
<footer id="auteurs">
© Sebastien, Younes & Maxime - Wilders 2023
</footer>
<script src="script.js"></script>
</body>
</html>