Files
PasswordManager/public/search.html
RochesterX 0336bc567f Search
2026-03-11 12:41:58 -04:00

61 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Search Players</title>
<link rel="stylesheet" href="../assets/css/style.css">
<link rel="stylesheet" href="../public/assets/css/style.css">
</head>
<body>
<div class="center">
<form id="searchForm">
<h2>Search Players</h2>
<hr>
<select id="category" style="display: none;">
<option value="Name">Name</option>
<option value="Password">Password</option>
</select>
<p>Search players by name:</p>
<input type="text" id="query" placeholder="Contains">
<div class="days" style="display: none;">
<label class="checkbox">
<input type="checkbox" name="days" value="QB" checked></input>
<span class="mark">QB</span>
</label>
<label class="checkbox">
<input type="checkbox" name="days" value="RB" checked></input>
<span class="mark">RB</span>
</label>
<label class="checkbox">
<input type="checkbox" name="days" value="TE" checked></input>
<span class="mark">TE</span>
</label>
<label class="checkbox">
<input type="checkbox" name="days" value="WR" checked></input>
<span class="mark">WR</span>
</label>
</div>
<button style="display: none;" type="submit">Search</button>
<a href="/home">Return Home</a>
</form>
<div class="player-box">
<table id="table">
<thead id="header"></thead>
<tbody id="results"></tbody>
</table>
</div>
<p id="nomatch" style="display: none;">No matches found.</p>
</div>
<script type="module" src="search.js"></script>
</body>
</html>