tidy messages and stuff

This commit is contained in:
SowinskiBraeden committed 2026-03-15 14:28:16 -07:00
1 parent c35773d337
commit f596b7ee19
3 files changed
+10 -36

No files matched your search

+3 -8
View File
@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Admin · Poker Portal{% endblock %}
{% block title %}Admin - Poker Portal{% endblock %}
{% block content %}
<section class="hero-card compact">
<div>
@@ -21,7 +21,7 @@
<label>
<span>Player name</span>
<input list="player_names" type="text" name="player_name" placeholder="Braeden" required>
<input list="player_names" type="text" name="player_name" placeholder="Peter Venkman" required>
<datalist id="player_names">
{% for player_name in player_names %}
<option value="{{ player_name }}"></option>
@@ -40,7 +40,7 @@
<label>
<span>Amount</span>
<input type="number" step="0.01" name="amount" placeholder="50.00">
<input type="number" step="0.01" name="amount" placeholder="5.00">
</label>
<label>
@@ -48,11 +48,6 @@
<textarea name="note" rows="4" placeholder="Rebuy, correction, settled chips later, etc."></textarea>
</label>
<div class="helper-box">
<strong>Tip:</strong>
<span>Use positive amounts for normal buy-ins and cash-outs. Use negative amounts to correct a previous entry without editing history.</span>
</div>
<button class="primary-button" type="submit">Add event</button>
</form>