13 lines
408 B
HTML
13 lines
408 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
<h1>Register</h1>
|
|
<form action="/register" method="post">
|
|
<input autocomplete="off" autofocus name="name" placeholder="Name" type="text">
|
|
{% for sport in sports %}
|
|
<input name="sport" type="radio" value="{{ sport }}"> {{ sport }}
|
|
{% endfor %}
|
|
<button type="submit">Register</button>
|
|
</form>
|
|
{% endblock %}
|