SaeDEV2.2/html/connexion.html

34 lines
840 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../css/style.css">
<title>Page de Connexion</title>
</head>
<body>
<div id="content_cours">
<header>
<nav>
<a href="../index.html">Page d'accueil</a>
</nav>
</header>
<h2>Connexion</h2>
<form action="../php/connexion.php" method="post">
<label for="login">Login :</label><br>
<input type="text" id="login" name="login"><br>
<label for="password">Mot de passe :</label><br>
<input type="password" id="password" name="password"><br>
<legend> Se souvenir de moi ? </legend>
<input type="checkbox" id="souvenirO" name="souvenirO">
<label for="souvenirO">OUI </label><br><br>
<input type="submit" value="Se connecter">
</form>
</body>
</html>