-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset-password-request.html
More file actions
62 lines (62 loc) · 3.22 KB
/
reset-password-request.html
File metadata and controls
62 lines (62 loc) · 3.22 KB
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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="Assets/Logo/Personnal/SiteLogo-NoText.png"> <!-- Version of the logo without the text -->
<title>DéfiMaths - Connexion</title>
<link rel="stylesheet" href="./CSS/config.css">
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/login-regsiter.css">
<link rel="stylesheet" href="./CSS/user-feedback.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<script type="module" src="JS/initialise.js"></script>
<script type="module" src="JS/update-header.js"></script>
<script type="module" src="JS/icons-events.js"></script>
<script type="module" src="JS/toast.js"></script>
</head>
<body>
<!-- Adding the toast notifications elements -->
<div id="toast" class="feedback-container warning" style="display: none;">
<div class="toast-image">
<i class="fas"></i>
</div>
<div class="toast-content">
</div>
</div>
<!-- Main page -->
<header class="header">
<div class="header-logo">
<img src="Assets/Logo/Personnal/SiteLogo-Text.png" alt="Logo" class="logo"> <!-- Version of the logo with just the text -->
</div>
<div class="header-menu">
<a href="index.html" class="header-text">Menu</a>
<a href="selection-page.html" class="header-text">Nos quiz</a>
</div>
<div class="account-info">
<a href="login.html" class="header-text" id="user-name-text"><i class="fa-solid fa-user"></i> Se connecter</a>
</div>
<!-- Button to toggle the burger menu visibility -->
<i class="fa-solid fa-bars burger-menu-visibility-switch"></i>
</header>
<main>
<!-- Burger menu for mobile version -->
<div class="burger-menu">
<a class="burger-text" style="text-transform: uppercase" href="index.html">Menu</a>
<a class="burger-text" style="text-transform: uppercase" href="selection-page.html">Nos quiz</a>
<a class="burger-text" href="login.html" id="user-name-text-burger" ><i class="fa-solid fa-user"></i>Se connecter</a>
</div>
<div class="register-container">
<h2>Réinitialiser le mot de passe</h2>
<form action="./PHP/reset-password-request.php" class="login-form" method="post">
<div class="form-item" id="email-container">
<label for="email-login">Email</label>
<input type="email" name="email" id="email-login" autocomplete="username" required>
</div>
<button type="submit" class="submit-button">Envoyer le lien <i class="fa-solid fa-arrow-right"></i></button>
</form>
<p>Pas encore de compte ? <a href="register.html">S'inscrire</a></p>
</div>
</main>
</body>
</html>