diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-08-01 09:39:58 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-08-01 09:39:58 +0000 |
commit | ea3d6a3d93123e7d8a19a7c0321f95116b962d1e (patch) | |
tree | 5074da21900069f39f60adba33e2f4395030bfad /wk9/lect/cookies/templates/login.html | |
parent | 0abf83d77e76ac4c3ce9f4a298f6dfc10f871433 (diff) |
Thu, Aug 1, 2024, 2:39 AM -07:00
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 %} |