Files
PasswordManager/public/search.html
RochesterX 6e820464d5 Initial
2025-11-12 10:13:24 -05:00

49 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Search Users</title>
<link rel="stylesheet" href="../assets/css/style.css">
<link rel="stylesheet" href="../public/assets/css/style.css">
</head>
<body>
<div class="center">
<h2>Search Users</h2>
<form id="searchForm">
<select id="category" required>
<option value="Id">ID</option>
<option value="Username">Username</option>
<option value="Last Name">Last Name</option>
<option value="First Name">First Name</option>
<option value="DOB">DOB</option>
<option value="Role">Role</option>
<option value="LastLogin">Last Login</option>
<option value="CreatedAt">Date Created</option>
</select>
<input type="text" id="query" placeholder="Contains" required>
<button type="submit">Search</button>
</form>
<table id="table">
<thead>
<tr>
<th>ID</th>
<th>Username</th>
<th>Name</th>
<th>DOB</th>
<th>Role</th>
<th>Last Login</th>
<th>Date Created</th>
</tr>
</thead>
<tbody id="results"></tbody>
</table>
<br>
<a href="home.html">Return Home</a>
</div>
<script type="module" src="search.js"></script>
</body>
</html>