mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-03-18 21:50:46 +01:00
64 lines
2.0 KiB
HTML
64 lines
2.0 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>Chat</h2>
|
|
<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">Se déconnecter</button>
|
|
<button type="submit">Envoyer</button>
|
|
</div>
|
|
</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> |