webgames/templates/cwa/welcome.html.j2
2021-10-31 14:44:14 +01:00

15 lines
No EOL
420 B
Django/Jinja

{% extends 'cwa/base.html.j2' %}
{% block body %}
<h1>New Game</h1>
<form action="{{ baseurl }}" method="POST">
<ol>
<li>Choose a name: <input type="text" name="name" placeholder="{{ placeholder }}" /><input type="submit" value="Go!"/></li>
<li>Join or start a game</li>
<li>Invite other players</li>
<li>Play!</li>
</ol>
<input type="hidden" name="placeholder" value="{{ placeholder }}" /></li>
</form>
{% endblock %}