43 lines
988 B
HTML
43 lines
988 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Chat Room</title>
|
|
<meta name="author" content="Luna">
|
|
<meta name="description" content="Maya's Stream Chat">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="chat.css">
|
|
<link rel="icon" href="">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Welcome to the chat!</h1>
|
|
|
|
<div id="chatbox">
|
|
|
|
<div id="innerchatbox">
|
|
|
|
</div>
|
|
|
|
<form autocomplete="off">
|
|
<input type="text" id="message" name="message" required>
|
|
<label for="message">Input Message Above</label>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div id="loggeduser"></div>
|
|
|
|
<script src="chat.js"></script>
|
|
<script src="logout.js"></script>
|
|
|
|
<button type="button" onclick="logout()">Logout</button>
|
|
|
|
<div id="errormessage"></div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |