52 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 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="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 type="text/javascript">
 | |
|             window.onload = function() {
 | |
|               let a = document.getElementById("logoutlink");
 | |
|               a.onclick = function() {
 | |
|                 logout()
 | |
|                 return false;
 | |
|               }
 | |
|             }
 | |
|         </script>
 | |
| 
 | |
|         <a id="logoutlink" href="stream.html">(logout)</a> 
 | |
| 
 | |
|         <div id="errormessage"></div>
 | |
| 
 | |
|         <script src="chat.js"></script>
 | |
|         <script src="logout.js"></script>
 | |
| 
 | |
|     </body>
 | |
| 
 | |
| </html> |