wordle/templates/game.html

24 lines
825 B
HTML
Raw Normal View History

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 %}
<li>
{% for letter, color in guess %}
<span class="letter" style="color:{{ color }};">{{ letter|upper }}</span>
{% endfor %}
</li>
{% 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 %}