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

{% block body %}

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

{% endblock %}