mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-03-18 21:50:46 +01:00
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chat</title>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
th, td {
|
|
border: 1px solid black;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Chat en ligne</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="accueil.html">Accueil</a></li>
|
|
<li><a href="chat.html">Chat</a></li>
|
|
<li><a href="https://isen-nantes.fr" target="_blank"><img src="images/ISEN_Logo.png" alt="logo isen"></a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<section>
|
|
<h2>Authentification</h2>
|
|
<form action="chat.html" method="get">
|
|
<label for="username">Nom d'utilisateur:</label>
|
|
<input type="text" id="username" name="username" required>
|
|
<br><br>
|
|
<label for="password">Mot de passe:</label>
|
|
<input type="password" id="password" name="password" required>
|
|
<br><br>
|
|
<input type="submit" value="Se connecter">
|
|
</form>
|
|
</section>
|
|
<footer>
|
|
<p>All content copyright ©A3</p>
|
|
<a href="http://isen-nantes.fr" target="_blank"><p>Lien vers la page du Programmeur</p></a>
|
|
</footer>
|
|
</body>
|
|
</html> |