-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (52 loc) · 2.13 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
45
46
47
48
49
50
51
52
53
<!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">
<link rel="stylesheet" href="style.css"></link>
<title>Quiz</title>
</head>
<body>
<h1>Quizz</h1>
<div class="formul1" id="form1">
<div class="utilisateur">
<label for="identifiant">Nom d'utilisateur</label>
<input type="text" id="nom" placeholder="nom d'ulisateur ou Email">
</div>
<div class="motpass">
<label for="identifiant">Mot de passe</label>
<input type="password" name="motdepasse" value="" placeholder="mot de passe"/><br>
<button type="button" id="cnx" class="btn btn-primary btn-lg">Se Connecter</button>
<button type="button" class="btn btn-primary btn-lg">S'inscrire</button>
</div>
</div>
<div class="formul2" id="form2">
<div class="nom">
<label for="identifiant">Nom</label>
<input type="text" id="nom" placeholder="Nom"><br>
<div class="prenom">
<label for="prenom">Prenom</label>
<input type="text" id="nom" placeholder="Prenom"><br>
</div>
<div class="email">
<label for="identifiant">Email</label>
<input type="text" id="nom" placeholder="Email"><br>
</div>
<div class="motpasse">
<label for="identifiant">Entre un mot de passe</label>
<input type="password" name="motdepasse" value="" placeholder="mot de passe"/><br>
</div>
<div class="confirmmotpasse">
<label for="identifiant">Confirmer votre mot depasse</label>
<input type="password" name="motdepasse" value="" placeholder="confirmer mot de passe"/><br>
</div>
<div class="bouton">
<button type="button" class="btn btn-primary btn-lg">S'inscrire</button>
<button type="button" class="btn btn-primary btn-lg">Retour</button>
</div>
</div>
</div>
<script src="/Users/diallohabayatou/Quiz/Quiz.js"></script>
</body>
</html>