-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexoJS.html
More file actions
28 lines (28 loc) · 1.02 KB
/
exoJS.html
File metadata and controls
28 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="exoJS.css">
<script src="exoJS.js" defer></script>
<title>Exo</title>
</head>
<body>
<h2>Créer un utilisateur :</h2>
<form>
<p>saisir un nom :</p>
<p><input type="text" id="name"></p>
<p>saisir un prénom :</p>
<p><input type="text" id="firstName"></p>
<p>saisir un login :</p>
<p><input type="text" id="login"></p>
<p>saisir un mot de passe :</p>
<p><input type="password" id="mdp"></p>
<p><input type="button" value="Ajouter" onclick="ajouter()"></p>
</form>
<h3 id ="error"></h3>
<h2>Liste des comptes utilisateurs créés :</h2>
<h3 id ="nbrCompte">Il n'y à aucun compte utilisateur</h3>
<p id="resultat"></p>
</body>
</html>