Skip to content

Commit

Permalink
add login page
Browse files Browse the repository at this point in the history
  • Loading branch information
Salome28 authored Jul 10, 2024
1 parent 795ce61 commit ad0a83b
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pageAuthenfication.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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" method="post" 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>

0 comments on commit ad0a83b

Please sign in to comment.