9 lines
358 B
HTML
9 lines
358 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="game_id" autofocus/>
|
|
<input type="submit">
|
|
</form>
|
|
{% endblock %} |