-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.29 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Fluent</title>
<script src="scripts/form.js" defer></script>
<script src="scripts/chrono.js" defer></script>
</head>
<body>
<div>
<form id="form">
<label for="word" aria-label="Mot du patient">Mot du patient :</label>
<input type="text" name="word" id="word" autocomplete="off" />
<button type="submit">Ok</button>
</form>
<div class="results">
<div id="word-list">
<p>Nombre de mots : <span class="counter">0</span></p>
<div>
<p>Liste des mots :</p>
<ul class="list"></ul>
</div>
</div>
<div id="duplicate-list">
<p>Nombre de doublons : <span class="counter">0</span></p>
<div>
<p>Liste des doublons :</p>
<ul class="list"></ul>
</div>
</div>
</div>
</div>
<div id="chrono-div">
<button onclick="start()">Start</button>
<button onclick="pause()">Pause</button>
<button onclick="reset()">Reset</button>
<span id="chrono-display"></span>
</div>
</html>