wordle/templates/home.html
2022-01-19 01:43:19 +01:00

10 lines
437 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 }}" size="7" name="{{ KEY_GAME_ID }}" autofocus/>
<input type="submit">
</form>
{#<a href="{{url_for('init_solve_game')}}">Solve game</a>#}
{% endblock %}