Files

61 lines
2.0 KiB
HTML
Raw Permalink Normal View History

2025-11-12 10:13:24 -05:00
<!DOCTYPE html>
<html>
<head>
2025-11-17 18:56:31 -05:00
<title>Search Players</title>
2025-11-12 10:13:24 -05:00
<link rel="stylesheet" href="../assets/css/style.css">
<link rel="stylesheet" href="../public/assets/css/style.css">
</head>
<body>
<div class="center">
2025-11-17 18:56:31 -05:00
<form id="searchForm">
2025-11-29 19:02:01 -05:00
<h2>Search Players</h2>
<hr>
2025-11-17 18:56:31 -05:00
<select id="category" style="display: none;">
2026-03-11 12:41:58 -04:00
<option value="Name">Name</option>
<option value="Password">Password</option>
2025-11-12 10:13:24 -05:00
</select>
2025-11-17 18:56:31 -05:00
<p>Search players by name:</p>
2025-11-26 23:55:37 -05:00
<input type="text" id="query" placeholder="Contains">
2025-11-26 22:52:05 -05:00
2026-03-11 12:41:58 -04:00
<div class="days" style="display: none;">
2025-11-26 22:52:05 -05:00
<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>
2025-11-26 23:55:37 -05:00
<button style="display: none;" type="submit">Search</button>
2025-11-29 19:07:29 -05:00
<a href="/home">Return Home</a>
2025-11-12 10:13:24 -05:00
</form>
2025-11-29 19:02:01 -05:00
<div class="player-box">
<table id="table">
<thead id="header"></thead>
<tbody id="results"></tbody>
</table>
</div>
2025-11-12 10:13:24 -05:00
2025-11-17 18:56:31 -05:00
<p id="nomatch" style="display: none;">No matches found.</p>
2025-11-12 10:13:24 -05:00
</div>
<script type="module" src="search.js"></script>
</body>
</html>