29 lines
897 B
HTML
29 lines
897 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/static/css/stylesheet.css">
|
|
</head>
|
|
<body class="mainpage">
|
|
<img src="{{ url }}" >
|
|
<div class="right">
|
|
<div class="stats">
|
|
<div class="rounds">
|
|
Round {{ i }} of {{ game_length }}
|
|
</div>
|
|
<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>
|
|
<input type="hidden" name="id" value="{{ id }}">
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|