36 lines
		
	
	
		
			No EOL
		
	
	
		
			959 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			No EOL
		
	
	
		
			959 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="style.css">
 | |
|         <link rel="icon" href="">
 | |
|     </head>
 | |
| 
 | |
|     <body>
 | |
| 
 | |
|         <h1>Login:</h1>
 | |
| 
 | |
|         <div id="box">
 | |
|             <form>
 | |
|                 <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="login.js"></script>
 | |
| 
 | |
|         <div id="incorrect"></div>
 | |
| 
 | |
|         <h2>You are logged in as <span id="username"></span></h2>
 | |
|     </body>
 | |
| </html> |