35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!-- templates/input.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Plinko Score Input</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body class="input-page">
|
|
<div class="container">
|
|
<h1>Fig Fam Fantasy Plinko</h1>
|
|
<div class="input-grid">
|
|
{% for player in players %}
|
|
<div class="player-card" data-id="{{ player.id }}">
|
|
<label>Player {{ player.id }}</label>
|
|
<input type="text"
|
|
class="name-input"
|
|
value="{{ player.name }}"
|
|
placeholder="Player Name">
|
|
<input type="number"
|
|
class="score-input"
|
|
value="{{ player.score }}"
|
|
placeholder="0">
|
|
<button class="update-btn">Update</button>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="actions">
|
|
<a href="/scoreboard" class="view-board-btn">View Scoreboard</a>
|
|
</div>
|
|
</div>
|
|
<script src="/static/script.js"></script>
|
|
</body>
|
|
</html>
|