Search
This commit is contained in:
42
public/player.html
Normal file
42
public/player.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title class="attribute-player_name">[Player name]</title>
|
||||
<link rel="stylesheet" href="../assets/css/style.css">
|
||||
<link rel="stylesheet" href="../public/assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
<h2 class="attribute-player_name">[Player Name]</h2>
|
||||
|
||||
<table id="table">
|
||||
<thead id="header">
|
||||
<tr>
|
||||
<td>Name</td>
|
||||
<td>ID</td>
|
||||
<td>Salary</td>
|
||||
<td>Team</td>
|
||||
<td>Position</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="results">
|
||||
<tr>
|
||||
<td class="attribute-player_name">[Name]</td>
|
||||
<td class="attribute-player_id">[ID]</td>
|
||||
<td class="attribute-salary format-salary">[Salary]</td>
|
||||
<td class="attribute-team_name">[Team]</td>
|
||||
<td class="attribute-position">[Position]</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<p id="nomatch" style="display: none;">No matches found.</p>
|
||||
|
||||
<br>
|
||||
|
||||
<a href="/search">Return to Player Search</a>
|
||||
</div>
|
||||
|
||||
<script type="module" src="/player.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user