wordle/templates/home.html

9 lines
355 B
HTML
Raw Normal View History

2022-01-18 21:52:14 +01:00
{% 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>Predefined (0 to {{ num_games }})</label>
<input type="number" min="0" max="{{ num_games }}" name="game_id" autofocus/>
<input type="submit">
</form>
{% endblock %}