-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnecter.html
45 lines (41 loc) · 1.62 KB
/
connecter.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>ENI - MEMORY - Se connecter</title>
</head>
<body>
<header>
<div>
<h1>ENI - MEMORY - Se Connecter</h1>
</div>
<section>
<nav>
<ul>
<li><i></i><a href="index.html">Accueil</a></li>
<li><i></i><a href="inscription.html">S'inscrire</a></li>
<li><i></i><a href="connecter.html">Se connecter</a></li>
<li><i></i><a href="profil.html">Profil</a></li>
<li><i></i><a href="jouer.html">Jouer</a></li>
</ul>
</nav>
</section>
</header>
<section class="cadre">
<h2>Connectez-vous</h2>
<form action="" method="" class="formulaire">
<label for="">Entrez votre mail</label>
<input type="email" id="" name="" placeholder="Votre mail : exemple john@doe.fr" required>
<label for="">Mot de passe</label>
<input type="password" id="" name="" placeholder="Votre mot de passe" required>
<div class="boiteAboutton">
<input type="submit" value="Se connecter" class="butt">
<input type="button" value="Annuler" class="butt">
</div>
</form>
</section>
<script type="module" src="js/app.js"></script>
</body>
</html>