✨
This commit is contained in:
@ -7,19 +7,25 @@
|
||||
<img src="{{ url }}" >
|
||||
<div class="right">
|
||||
<div class="stats">
|
||||
<div class="rounds">
|
||||
Round {{ i }} of {{ game_length }}
|
||||
</div>
|
||||
{% if game_length > 0 %}
|
||||
<div class="rounds">
|
||||
Round {{ i }} of {{ game_length }}
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="points">
|
||||
{{ points }}/{{ round_n }} points.
|
||||
</div>
|
||||
</div>
|
||||
<form method="post" action="/fontgame?id={{ id }}">
|
||||
<select name="font">
|
||||
{% for font in fonts %}
|
||||
<option>{{ font }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<form method="post" action="/fontgame?id={{ id }}" autocomplete="off">
|
||||
{% if not hard_mode %}
|
||||
<select name="font" autofocus>
|
||||
{% for font in fonts %}
|
||||
<option>{{ font }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
{% else %}
|
||||
<input type="text" name="font" autofocus>
|
||||
{% endif %}
|
||||
<input type="hidden" name="id" value="{{ id }}">
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
|
Reference in New Issue
Block a user