-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
40 lines (36 loc) · 1.45 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/login.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cod'Ring - Connexion</title>
</head>
<body>
<header>
<img id="logo" src="../images/logo_sonnette.png" alt="Logo">
<div class="darkModeContainer">
<label class="switch">
<input type="checkbox" id="darkModeCheckbox">
<span class="slider"></span>
</label>
<p>Dark mode</p>
</div>
</header>
<div class="formContainer">
<form>
<h2>Connectez-vous</h2>
<input type="email" id="email" required placeholder="Email">
<input id="password" type="password" required placeholder="Mot de passe">
<div class="showPasswordContainer">
<input class="checkbox" type="checkbox" id="checkbox" onclick="showPasswords()">
<label for="checkbox">Montrer le mot de passe</label>
</div>
<button onclick="checkIfUserExist()">Connexion</button>
<p>Vous n'avez pas de compte ? <a href="html/register.html">S'inscrire</a></p>
</form>
</div>
</body>
<script src="js/login.js"></script>
<script src="js/darkMode.js"></script>
</html>