WIM/WIM4.1/tp/tp3/ex3/chat.html
2022-05-10 12:21:29 +02:00

28 lines
729 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title></title>
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css" type="text/css">
<link rel="stylesheet" href="./css/style.css">
<script src="js/chat.js"></script>
</head>
<body container>
<h3>Chat</h3>
<form id="form_auth">
<input id="nom" name="nom" type="text">
<button type="submit">Se connecter</button>
</form>
<div id="espace_chat">
<h3>Messages</h3>
<div id="messages" style="height:600px;overflow-y:auto;" >
<ul id="liste_message"></ul>
</div>
<br>
<form id="form" action="" method="post">
<input name="message" id="message" type="text">
</form>
</div>
</body>
</html>