summaryrefslogtreecommitdiff
path: root/wk9/lect/hello/templates/index.html
blob: 4ce1e8509df2aadf72dd94f5d6e46b77238cabad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>

<html lang="en">
    <head>
        <meta name="viewport" content="initial-scale=1, width=device-width">
        <title>hello</title>
    </head>
    <body>
        <form action="/greet" method="get">
            <input autocomplete="off" autofocus name="name" placeholder="Name" type="text">
            <button type="submit">Greet</button>
        </from>
    </body>
</html>