-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.2 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
<!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="login.css">
<title>Login Page</title>
</head>
<body>
<div class="login-box">
<div class="login-header">
<header>Login</header> <!-- En-tête de connexion -->
</div>
<form action="login.php" method="post">
<div class="input-box">
<input type="login" class="input-field" name="login" placeholder="Email" autocomplete="off" required>
</div>
<div class="input-box">
<input type="password" class="input-field" name="password" placeholder="Password" autocomplete="off" required>
</div>
<div class="input-submit">
<button class="submit-btn" id="submit"></button>
<label for="submit">Login</label> <!-- Étiquette pour le bouton de connexion -->
</div>
</form>
<div class="sign-up-link">
<p>Don't have account? <a href="signup.html">Sign Up</a></p> <!-- Lien pour s'inscrire -->
</div>
</div>
</body>
</html>