2022-11-24 10:26:37 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2022-11-29 15:48:18 +00:00
|
|
|
<title>Search</title>
|
|
|
|
<link rel="stylesheet" href="css/search.css">
|
|
|
|
<script src="https://kit.fontawesome.com/ed3c25598e.js" crossorigin="anonymous"></script>
|
2022-11-24 10:26:37 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-12-15 14:50:58 +00:00
|
|
|
<nav>
|
|
|
|
<ul>
|
|
|
|
<li><a href="search.html" class="btn active">Search</a></li>
|
|
|
|
<li><a href="addVehicle.html" class="btn">Add new vehicle</a></li>
|
|
|
|
<li><a href="newReport.html" class="btn">Create new report</a></li>
|
|
|
|
<li class="admin"><a href="newUser.html" class="btn">Create new user</a></li>
|
2022-12-15 23:25:00 +00:00
|
|
|
<li class="admin"><a href="addFine.html" class="btn">Add Fines</a></li>
|
2022-12-15 14:50:58 +00:00
|
|
|
<li class="admin"><a href="viewLog.html" class="btn">View log</a></li>
|
|
|
|
<li><a href="changePassword.html" class="btn">Change password</a></li>
|
|
|
|
<li><a id="logout" class="btn">Logout</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2022-12-09 04:51:56 +00:00
|
|
|
<main id="search">
|
|
|
|
<header id="title">
|
|
|
|
<h1></h1>
|
|
|
|
</header>
|
2022-11-29 15:48:18 +00:00
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
<div class="searchContainer">
|
|
|
|
<form method="POST" id="searchForm">
|
|
|
|
<div class="selectDiv">
|
|
|
|
<select name="searchType" id="searchType">
|
|
|
|
<option value="dln">Name/Driving licence number</option>
|
|
|
|
<option value="pn">Plate Number</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
2022-11-29 15:48:18 +00:00
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
<div class="searchBtnContainer">
|
2022-12-15 23:25:00 +00:00
|
|
|
<input type="text" id="searchField" name="searchField" placeholder="Find owner" required>
|
2022-12-09 04:51:56 +00:00
|
|
|
<button type="submit"><i class="fa-solid fa-magnifying-glass"></i></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2022-11-24 10:26:37 +00:00
|
|
|
|
2022-12-09 04:51:56 +00:00
|
|
|
<div class="content">
|
|
|
|
<table id="searchResults">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody></tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<script src="js/checkUser.js"></script>
|
|
|
|
<script src="js/search.js"></script>
|
2022-11-24 10:26:37 +00:00
|
|
|
</body>
|
2022-11-29 15:48:18 +00:00
|
|
|
</html>
|