diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 09:53:12 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 09:53:12 +0000 |
commit | 6583298b160057ccecd7720ee663a90d3ec2921a (patch) | |
tree | 3735be8538d7b7776b5002b7eb43a59e152311aa /wk9 | |
parent | 76b74d2a8ca01d3599d83c6a6f6d0b04f8397b80 (diff) |
Tue, Jul 9, 2024, 2:53 AM -07:00
Diffstat (limited to 'wk9')
-rw-r--r-- | wk9/lect/froshims/templates/failure.html | 7 | ||||
-rw-r--r-- | wk9/lect/froshims/templates/success.html | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/wk9/lect/froshims/templates/failure.html b/wk9/lect/froshims/templates/failure.html new file mode 100644 index 0000000..f1322c1 --- /dev/null +++ b/wk9/lect/froshims/templates/failure.html @@ -0,0 +1,7 @@ +{% extends "layout.html" %} + +{% block body %} + + You are not registered! + +{% endblock %} diff --git a/wk9/lect/froshims/templates/success.html b/wk9/lect/froshims/templates/success.html new file mode 100644 index 0000000..b79e45b --- /dev/null +++ b/wk9/lect/froshims/templates/success.html @@ -0,0 +1,7 @@ +{% extends "layout.html" %} + +{% block body %} + + You are registered! (Not really) + +{% endblock %} |