36 lines
		
	
	
	
		
			986 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			986 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 
 | |
|     <head>
 | |
|         <title>Login</title>
 | |
|         <meta name="author" content="Luna">
 | |
|         <meta name="description" content="Chat Login">
 | |
|         <meta name="viewport" content="width=device-width, initial-scale=1" />
 | |
|         <meta charset="UTF-8">
 | |
|         <link rel="stylesheet" href="../css/style.css">
 | |
|         <link rel="icon" href="../assets/favicon.svg">
 | |
|     </head>
 | |
| 
 | |
|     <body>
 | |
| 
 | |
|         <h1>Login:</h1>
 | |
| 
 | |
|         <div id="box">
 | |
|             <form autocomplete="off">
 | |
|                 <label for="uname">Username:</label><br>
 | |
|                 <input type="text" id="uname" name="uname" required><br>
 | |
| 
 | |
|                 <label for="pin">Pin:</label><br>
 | |
|                 <input type="number" id="pin" name="pin" required><br><br>
 | |
| 
 | |
|                 <input type="submit" value="Login">
 | |
|               </form> 
 | |
|         </div>
 | |
| 
 | |
|         <script src="../js/login.js"></script>
 | |
| 
 | |
|         <div id="errormessage"></div>
 | |
| 
 | |
|         <span id="username"></span>
 | |
|     </body>
 | |
| </html>
 |