mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-03-18 21:50:46 +01:00
44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Authentification</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Marko+One&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body class="auth-page">
|
|
<header>
|
|
<h1>Chat en ligne</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="accueil.html">Accueil</a></li>
|
|
<li class="active"><a href="chat.html">Chat</a></li>
|
|
<li><a href="https://isen-nantes.fr" target="_blank"><img class="logo" src="images/ISEN_Logo.png" alt="logo isen"></a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<section class="frame">
|
|
<div class="table">
|
|
<h2 class="page-title">Authentification</h2>
|
|
</div>
|
|
<form action="chat.html" method="get">
|
|
<label for="username">Nom d'utilisateur:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
<label for="password">Mot de passe:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
<div id="form-buttons">
|
|
<input type="submit" value="Se connecter">
|
|
<input type="reset" value="Effacer">
|
|
<label for="remember-me">Rester connecté</label>
|
|
<input type="checkbox" id="remember-me" name="remember-me">
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<footer>
|
|
<p>All content copyright ©A3</p>
|
|
<p><a href="http://isen-nantes.fr" target="_blank">Lien vers la page du Programmeur</a></p>
|
|
</footer>
|
|
</body>
|
|
</html> |