summaryrefslogtreecommitdiff
path: root/wk9/lect/froshims/templates/index.html
blob: fac926b2f9c0a7792b96e98202e41d2402a25e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% 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="checkbox" value={{sport}}>{{sport}}
            {% endfor %}
        <button type="submit">Register</button>
    </form>

{% endblock %}