lilachat-frontend/html/chat.html

40 lines
985 B
HTML
Raw Permalink Normal View History

2021-07-22 20:09:02 +00:00
<!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">
2021-07-26 22:33:30 +00:00
<link rel="stylesheet" href="../css/chat.css">
2021-07-22 20:09:02 +00:00
<link rel="icon" href="">
</head>
<body>
<h1>Welcome to the chat!</h1>
2021-07-24 15:17:41 +00:00
<div id="outerchatbox">
2021-07-22 20:09:02 +00:00
2021-07-24 15:17:41 +00:00
<div id="chatbox">
2021-07-22 20:09:02 +00:00
</div>
2021-07-23 06:51:26 +00:00
<form autocomplete="off">
2021-07-22 20:09:02 +00:00
<input type="text" id="message" name="message" required>
2021-07-23 14:30:43 +00:00
<label for="message">Input Message Above</label>
2021-07-22 20:09:02 +00:00
</form>
</div>
<div id="loggeduser"></div>
2021-07-24 18:27:21 +00:00
<button type="button" id="logoutbutton" onclick="logout()">Logout</button>
2021-07-23 19:41:55 +00:00
2021-07-26 22:23:13 +00:00
<script src="../js/chat.js"></script>
<script src="../js/logout.js"></script>
2021-07-23 19:41:55 +00:00
2021-07-22 20:09:02 +00:00
</body>
</html>