lila-chat/frontend/html/chat.html

42 lines
1.0 KiB
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="../css/chat.css">
<link rel="icon" href="">
</head>
<body>
<h1>Welcome to the chat!</h1>
<div id="outerchatbox">
<div id="chatbox">
</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>
<button type="button" id="logoutbutton" onclick="logout()">Logout</button>
<div id="errormessage"></div>
<script src="../js/chat.js"></script>
<script src="../js/logout.js"></script>
</body>
</html>