30 lines
815 B
HTML
30 lines
815 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Chat App with Websocket</title>
|
||
|
<style>
|
||
|
.clientinfos{
|
||
|
background-color: darkgrey;
|
||
|
}
|
||
|
.clientmessages{
|
||
|
background-color: lightblue;
|
||
|
border: 1px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="clientinfos">
|
||
|
<button id="connect">connect</button>
|
||
|
</div>
|
||
|
<div class=clientmessages id="clientmessages"></div>
|
||
|
<div class="clientsend">
|
||
|
<input type="text" id="messageinput">
|
||
|
<button id="sendbutton">Send</button>
|
||
|
</div>
|
||
|
<script src="client.js"></script>
|
||
|
</body>
|
||
|
</html>
|