2022-11-24 09:15:38 +00:00
|
|
|
<!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>
|
2022-12-09 04:51:56 +00:00
|
|
|
|
2022-11-29 15:48:18 +00:00
|
|
|
<form method="POST" class="loginForm" id="login">
|
2022-11-24 09:15:38 +00:00
|
|
|
<div class="formControl">
|
|
|
|
<label for="username">Username</label>
|
2022-12-03 12:57:42 +00:00
|
|
|
<input type="text" name="username" id="username" required>
|
2022-11-24 09:15:38 +00:00
|
|
|
</div>
|
2022-12-09 04:51:56 +00:00
|
|
|
|
2022-11-24 09:15:38 +00:00
|
|
|
<div class="formControl">
|
|
|
|
<label for="password">Password</label>
|
2022-12-03 12:57:42 +00:00
|
|
|
<input type="password" name="password" id="password" required>
|
2022-11-24 09:15:38 +00:00
|
|
|
</div>
|
2022-12-09 04:51:56 +00:00
|
|
|
|
2022-11-24 09:15:38 +00:00
|
|
|
<input type="submit" value="Login" class="btn btnPrimary">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<script src="js/login.js"></script>
|
|
|
|
</body>
|
2022-11-29 15:48:18 +00:00
|
|
|
</html>
|