-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (52 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
65 lines (52 loc) · 2.13 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
<!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" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" />
<script src="./script.js" defer></script>
<title>Web Help Request</title>
</head>
<body>
<h1 class="container text-center">Distributeur de tickets !</h1>
<div class="container d-flex justify-content-between align-items-center text-center mt-5">
<div class="col-3">
<select id="selectUser" class="form-select form-select-sm " aria-label=".form-select-sm example">
<option selected>Nom</option>
</select>
</div>
<div class=" col-3 gx-2 text-center">
<form id="subTick">
<label class="form-label ">Description du ticket</label>
<input id="userTick" class="form-control form-control-sm" type="text"
aria-label=".form-control-sm example" />
</form>
</div>
<div class="col-3 text-end">
<button id="clickTick" type="button" class="btn btn-outline-dark" onClick="window.location.reload()">
J'ai besoin d'aide ☝
</button>
</div>
</div>
<h2 class="text-center container mt-5">Liste des apprenant.e.s</h2>
<div class="text-center mt-5">
<button id="buttnNext" type="button" class="btn btn-outline-dark">
Au suivant !
</button>
</div>
<div class="mt-5 container">
<table id="tableauId" class="table table-dark table-striped text-center">
<tr>
<th scope="col">ID du ticket</th>
<th scope="col">Nom</th>
<th scope="col">Description</th>
<th scope="col">Ticket validé</th>
</tr>
<tbody id="tBod">
</tbody>
</table>
</div>
</body>
</html>