23 lines
433 B
HTML
23 lines
433 B
HTML
{% extends "main.html" %}
|
|
{% block title %}Choose name{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>Choose a name</h1>
|
|
|
|
<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 %}
|
|
<tr><td>{{ player }}</td><td><input type=text name={{ player }} /></td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
<input type=submit />
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|