lila-chat/frontend/chat.html

37 lines
831 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">
<label for="message">Input Message Here:</label>
<input type="text" id="message" name="message" required>
</form>
</div>
<div id="loggeduser"></div>
<script src="chat.js"></script>
</body>
</html>