-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.01 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
<!DOCTYPE html>
<html lang="fr">
<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="index.css" />
<script src="index.js" defer></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qs/6.7.0/qs.min.js"></script>
<title>Taaches</title>
</head>
<body>
<div class="container">
<h1>SE CONNECTER</h1>
<form class="formulaire" action="" method="post">
<input required type="email" name="email" id="email" placeholder="Email" />
<input required type="password" name="mp" id="mp" placeholder="Mot de passe" />
<span id="erreur"></span>
<input name="valider" id="valider" type="submit" value="Valider" />
</form>
</div>
<div>
<a href="/creer-compte/index.html">Creer compte</a>
</div>
</body>
</html>