59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>Search</title>
 | 
						|
    <link rel="stylesheet" href="css/search.css">
 | 
						|
    <script src="https://kit.fontawesome.com/ed3c25598e.js" crossorigin="anonymous"></script>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<nav>
 | 
						|
    <ul>
 | 
						|
        <li><a href="search.html" class="btn active">Search</a></li>
 | 
						|
        <li><a href="newVehicle.html" class="btn">Add new vehicle</a></li>
 | 
						|
        <li><a href="newReport.html" class="btn">Create new report</a></li>
 | 
						|
        <li><a href="newUser.html" class="btn">Create new user</a></li>
 | 
						|
        <li><a href="addFines.html" class="btn">Add Fines</a></li>
 | 
						|
        <li><a href="viewLog.html" class="btn">View log</a></li>
 | 
						|
        <li><a href="changePassword.html" class="btn">Change password</a></li>
 | 
						|
        <li><a href="#" class="btn">Logout</a></li>
 | 
						|
    </ul>
 | 
						|
</nav>
 | 
						|
    <main id="search">
 | 
						|
        <header id="title">
 | 
						|
            <h1></h1>
 | 
						|
        </header>
 | 
						|
 | 
						|
        <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>
 | 
						|
 | 
						|
                <div class="searchBtnContainer">
 | 
						|
                    <input type="text" id="searchField" name="searchField" placeholder="Find owner">
 | 
						|
                    <button type="submit"><i class="fa-solid fa-magnifying-glass"></i></button>
 | 
						|
                </div>
 | 
						|
            </form>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <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>
 | 
						|
</body>
 | 
						|
</html>
 |