9 lines
355 B
HTML
9 lines
355 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>Predefined (0 to {{ num_games }})</label>
|
||
|
<input type="number" min="0" max="{{ num_games }}" name="game_id" autofocus/>
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
{% endblock %}
|