mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-03-18 21:50:46 +01:00
56 lines
2.1 KiB
HTML
56 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chat</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="chat-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">Chat</h2>
|
|
</div>
|
|
<form>
|
|
<div id="channel-refresh">
|
|
<label for="channel-select">Canaux: </label>
|
|
<select id="channel-select">
|
|
<option value="general">Général</option>
|
|
<option value="random">Aléatoire</option>
|
|
<option value="projets">Projets</option>
|
|
<option value="aide">Aide</option>
|
|
</select>
|
|
<label for="refresh-delay">Rafraichissement:</label>
|
|
<input type="number" id="refresh-delay" name="refresh-delay" min="1" max="60" value="5"> secondes
|
|
</div>
|
|
<div>
|
|
<label for="chat-messages">Messages:</label><br>
|
|
<textarea id="chat-messages" name="chat-messages" cols="100" rows="10" readonly></textarea>
|
|
</div>
|
|
<div>
|
|
<label for="message">Message:</label>
|
|
<input type="text" id="message" name="message" required>
|
|
<br>
|
|
<button type="button" id="disconnect-button" onclick="window.location.href='authentification.html';">Se déconnecter</button>
|
|
<button type="submit">Envoyer</button>
|
|
</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> |