2022-01-18 21:52:14 +01:00
|
|
|
{% include "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<a href="{{ url_for('home') }}">home</a>
|
|
|
|
<hr>
|
|
|
|
<ul>
|
|
|
|
{% for guess in guesses %}
|
2022-01-19 01:43:19 +01:00
|
|
|
{% include "_guess_line.html" %}
|
2022-01-18 21:52:14 +01:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% if state_playing %}
|
|
|
|
<form method="post" action="{{ url_for('make_guess') }}">
|
2022-01-18 23:01:23 +01:00
|
|
|
<input maxlength="{{ WORD_LENGTH }}" minlength="{{ WORD_LENGTH }}" size="{{ WORD_LENGTH }}"
|
|
|
|
name="{{ KEY_GUESS }}" autofocus autocomplete="off"
|
2022-01-18 22:33:49 +01:00
|
|
|
style="text-transform:uppercase"/>
|
2022-01-18 21:52:14 +01:00
|
|
|
<input type="submit">
|
|
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<p>{{ state }}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|