34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <meta name="viewport"
 | 
						|
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
 | 
						|
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
 | 
						|
    <title>Login</title>
 | 
						|
    <link rel="stylesheet" href="css/login.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<main>
 | 
						|
    <div class="login">
 | 
						|
        <h1>Login To Traffic Reporter</h1>
 | 
						|
 | 
						|
        <form method="POST" class="loginForm" id="login">
 | 
						|
            <div class="formControl">
 | 
						|
                <label for="username">Username</label>
 | 
						|
                <input type="text" name="username" id="username" required>
 | 
						|
            </div>
 | 
						|
 | 
						|
            <div class="formControl">
 | 
						|
                <label for="password">Password</label>
 | 
						|
                <input type="password" name="password" id="password" required>
 | 
						|
            </div>
 | 
						|
 | 
						|
            <input type="submit" value="Login" class="btn btnPrimary">
 | 
						|
        </form>
 | 
						|
    </div>
 | 
						|
</main>
 | 
						|
<script src="js/login.js"></script>
 | 
						|
</body>
 | 
						|
</html>
 |