add main-site
This commit is contained in:
parent
0bcf58c844
commit
0a3a77a9ff
52 changed files with 11206 additions and 0 deletions
29
main-site/chat/client.html
Normal file
29
main-site/chat/client.html
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<!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>
|
||||
Reference in a new issue