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

{% block body %}

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

{% endblock %}