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

{% block body}

        <form action="/greet" method="get">
            <input autocomplete="off" autofocus name="name" placeholder="Name" type="text">
            <button type="submit">Greet</button>
        </from>

{% endblock %}