30 lines
		
	
	
		
			722 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			30 lines
		
	
	
		
			722 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
|  | <!DOCTYPE html> | ||
|  | <html> | ||
|  | <body> | ||
|  | <div class="logBoxCenterer"> | ||
|  |     <div class='loginBox'> | ||
|  |         <div class="form"> | ||
|  |           <h1 style="color:rgb(239,60,168); font-family: sans-serif;">SIGN IN</h1> | ||
|  |           <div class="inputBox"> | ||
|  |             <p>USERNAME</p> | ||
|  |             <input type="text" required> | ||
|  |           </div> | ||
|  |           <div class="inputBox"> | ||
|  |             <p>PASSWORD</p> | ||
|  |             <input type="password" required> | ||
|  |           </div> | ||
|  |           <div class="register"> | ||
|  |             <a>Register</a> | ||
|  |           </div> | ||
|  |           <div class="inputBox"> | ||
|  |             <input type="submit" value="Login"> | ||
|  |           </div> | ||
|  |         </div> | ||
|  |     </div> | ||
|  |   </div> | ||
|  |     <script type="module" src="/src/main.js"></script> | ||
|  | </body> | ||
|  | </html> | ||
|  | 
 | ||
|  | 
 |