The whole-ass thing
This commit is contained in:
28
templates/fontgame.html
Normal file
28
templates/fontgame.html
Normal file
@ -0,0 +1,28 @@
|
||||
<!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>
|
Reference in New Issue
Block a user