various design improvements

This commit is contained in:
2019-01-02 17:24:02 +01:00
parent 3bf1d1f0eb
commit b8ffa5f4cc
5 changed files with 17 additions and 6 deletions

View File

@@ -3,15 +3,18 @@
{% block content %}
<h1>Choose a name</h1>
<h2>You are: {{ current_player }}</h2>
<div class=current_player_indicator>You are: {{ current_player }}</div>
<p>
Please name your player:
<br/>
<form method=post>
<table>
{% for player in other_players %}
{{ player }}: <input type=text name={{ player }} /><br/>
<tr><td>{{ player }}</td><td><input type=text name={{ player }} /></td></tr>
{% endfor %}
</table>
<input type=submit />
</form>
</p>