This commit is contained in:
2019-01-02 04:30:59 +01:00
commit 0007f25cf6
6 changed files with 128 additions and 0 deletions

15
templates/new_game.html Normal file
View File

@@ -0,0 +1,15 @@
{% extends "main.html" %}
{% block title %}New Game{% endblock %}
{% block content %}
<h1>New Game</h1>
Please enter player names:
<br/>
<form method=post>
{% for _ in range(10) %}
<input type=text name=pname /><br/>
{% endfor %}
<input type=submit />
</form>
{% endblock %}