wordle/templates/home.html
Daniel Tsvetkov 047d8704af app constants
2022-01-18 23:01:23 +01:00

9 lines
368 B
HTML

{% include "layout.html" %}
{% block body %}
<a href="{{url_for('init_random_game')}}">Random game</a>
<form method="post" action="{{url_for('init_deterministic_game')}}">
<label>Deterministic (0 to {{ num_games }})</label>
<input type="number" min="0" max="{{ num_games }}" name="{{ KEY_GAME_ID }}" autofocus/>
<input type="submit">
</form>
{% endblock %}