-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexo1.html
More file actions
30 lines (29 loc) · 1.25 KB
/
exo1.html
File metadata and controls
30 lines (29 loc) · 1.25 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
<!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>Document</title>
</head>
<body>
<h1>Liste d'utilisateur<h1>
<div id="userList">
<form id="formulaire">
<span>Prénom: <input id="forPrenom" type="text"/></span>
<span>Age: <input id="forAge" type="number"/></span>
<span><label for="role">Role: </label><select id="c" name="roles"><option value=""></option>
<option value="utilisateur">utilisateur</option>
<option value="administrateur">administrateur</option></select></span>
<span><button id="create">Créer</button></span>
<div id="tri">
<span><button id="create">Tri par ID</button></span>
<span><button id="create">Tri par prénom</button></span>
<span><button id="create">Tri par age</button></span>
<span><label for="recherche">Recherche:</label><input id="r" name="recherche" type="text"></type></span>
</div>
</form>
</div>
<script src="exo1.js"></script>
</body>
</html>