-
Notifications
You must be signed in to change notification settings - Fork 0
/
pageAuthenfication.html
45 lines (43 loc) · 1.26 KB
/
pageAuthenfication.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>
<head>
<!-- entête de la page -->
<meta charset="utf-8" />
<title> Authentification </title>
<link rel="stylesheet" href="styleLogin.css"/>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script type="text/javascript" src="jquery-3.7.1.min.js"></script>
</head>
<body>
<div class="wrapper">
<form id="loginForm" action="EspacePerso.html">
<h1> Login </h1>
<div class="input-box">
<input type="text" name="login" placeholder="Identifiant" required>
<i class='bx bxs-user'></i>
</div>
<h1> Mot de Passe </h1>
<div class="input-box">
<input type="password" name="mdp" placeholder="Mot de Passe" required>
<i class='bx bxs-lock-alt'></i>
</div>
<p id="retour"></p>
<br>
<div class="remember-forgot">
<label><input type="checkbox"> Remember me</label>
<br>
<a href="#">Forgot password ?</a>
</div>
<br>
<button type="button" id="submitBtn" class="btn"> Se connecter</button>
</form>
</div>
<script>
$("#submitBtn").on({
"click":function(){
$("#loginForm").submit();
}
})
</script>
</body>
</html>