2022-11-29 15:48:18 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Change Password</title>
|
2022-12-15 14:50:58 +00:00
|
|
|
<link rel="stylesheet" href="css/nav.css">
|
2022-11-29 15:48:18 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-09 04:51:56 +00:00
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="search.html" class="btn">Search</a></li>
|
2022-12-15 14:50:58 +00:00
|
|
|
<li><a href="addVehicle.html" class="btn">Add new vehicle</a></li>
|
2022-12-09 04:51:56 +00:00
|
|
|
<li><a href="newReport.html" class="btn">Create new report</a></li>
|
2022-12-15 14:50:58 +00:00
|
|
|
<li class="admin"><a href="newUser.html" class="btn">Create new user</a></li>
|
|
|
|
<li class="admin"><a href="addFines.html" class="btn">Add Fines</a></li>
|
|
|
|
<li class="admin"><a href="viewLog.html" class="btn">View log</a></li>
|
2022-12-09 04:51:56 +00:00
|
|
|
<li><a href="changePassword.html" class="btn active">Change password</a></li>
|
2022-12-15 14:50:58 +00:00
|
|
|
<li><a id="logout" class="btn">Logout</a></li>
|
2022-12-09 04:51:56 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
2022-11-29 15:48:18 +00:00
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
<main>
|
|
|
|
<header id="title">
|
|
|
|
<h1></h1>
|
|
|
|
</header>
|
2022-12-03 12:57:42 +00:00
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
<form method="POST" id="changePass">
|
|
|
|
<div class="formControl">
|
|
|
|
<label for="pass">Password</label>
|
|
|
|
<input type="password" name="pass" id="pass">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="formControl">
|
|
|
|
<label for="rePass">Retype Password</label>
|
|
|
|
<input type="password" name="rePass" id="rePass">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<input type="submit" value="Change Password" class="btn btnPrimary">
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<script src="js/checkUser.js"></script>
|
|
|
|
<script src="js/changePassword.js"></script>
|
2022-11-29 15:48:18 +00:00
|
|
|
</body>
|
|
|
|
</html>
|