summaryrefslogtreecommitdiff
path: root/wk9/lect/froshims/templates/index.html
blob: d9920da61ea0bb9aa6cbacf35ee50c5c49102182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "layout.html" %}

{% block body %}

    <h1>Register</h1>
    <form action="/register" method="post">
        <input autocomplete="off" autofocus name="name" placeholder="Name" type="text">
        <select name="sport">
            <option disabled selected value="">Sport</option>
            <option>Basketball</option>
            <option>Soccer</option>
            <option>Ultimate Frisbee</option>
        </select>
        <button type="submit">Register</button>
    </form>

{% endblock %}