summaryrefslogtreecommitdiff
path: root/wk9/lect/cookies/templates/login.html
blob: a7d6ea485c360a554ab38686751a8692d0482a79 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "layout.html" %}

{% block body %}

        <form action="/login" method="post">
            <input autocomplete="off" autofocus name="name" placeholder="Name" type="text">
            <button type="submit">Log In</button>
        </form>

{% endblock %}