25 lines
809 B
HTML
25 lines
809 B
HTML
<div class="card">
|
|
<h2 class="mb-3">Meine Scores</h2>
|
|
|
|
<p class="mt-2 mb-4">Hier siehst du alle gespeicherten Scores deines Accounts.</p>
|
|
|
|
<div id="scores-feedback" class="alert d-none mb-4" role="alert"></div>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table leaderboard-table mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Rang</th>
|
|
<th scope="col">User</th>
|
|
<th scope="col">time</th>
|
|
<th scope="col">Score</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="scores-body">
|
|
<tr>
|
|
<td colspan="4" class="text-center text-muted py-4">Lade Scores ...</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div> |