diff options
Diffstat (limited to 'wk9/lect/cookies/templates/login.html')
-rw-r--r-- | wk9/lect/cookies/templates/login.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wk9/lect/cookies/templates/login.html b/wk9/lect/cookies/templates/login.html new file mode 100644 index 0000000..a7d6ea4 --- /dev/null +++ b/wk9/lect/cookies/templates/login.html @@ -0,0 +1,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 %} |