-
Notifications
You must be signed in to change notification settings - Fork 0
/
progression.html
64 lines (58 loc) · 1.78 KB
/
progression.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="./CSS/mainstyle.css">
<link rel="stylesheet" href="./CSS/progression.css">
<script src="./js/progress_circle.js" defer></script>
</head>
<body>
<div class="content">
<div class="hero">
<h1>Suivi de progression</h1>
<p>Une simple application permettant de suivre vos progrès !</p>
</div>
<div class="progress_list">
<div class="progress" data-type="template" hidden>
<div class="header">
<h2 class="title"></h2>
<button class="edit"><img src="../images/edit-regular.svg"></button>
</div>
<hr>
<div class="content">
<div class="circular_progress">
<div class="circle">
<div class="mask">
<span class="percentage"></span>
</div>
</div>
</div>
</div>
</div>
<div class="add">
<button class="addBtn"><img src="./images/add.png"></button>
</div>
</div>
</div>
<dialog class="configuration">
<p>Entrez ici votre configuration !</p>
<form class="editForm" method="dialog">
<span>
<label for="name">Nom : </label>
<input id="name" type="text" required>
</span>
<span>
<label for="percentage">Completion : </label>
<input id="percentage" type="number" min="0" max="100" required>%
</span>
<span>
<label for="substasks">Sous-tâches : </label>
<input id="substasks" type="checkbox">
</span>
<button type="submit">Submit</button>
</form>
</dialog>
</body>
</html>