summaryrefslogtreecommitdiff
path: root/wk9
diff options
context:
space:
mode:
authorFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-07-09 09:53:12 +0000
committerFudgerboy <91767657+Fudgerboy@users.noreply.github.com>2024-07-09 09:53:12 +0000
commit6583298b160057ccecd7720ee663a90d3ec2921a (patch)
tree3735be8538d7b7776b5002b7eb43a59e152311aa /wk9
parent76b74d2a8ca01d3599d83c6a6f6d0b04f8397b80 (diff)
Tue, Jul 9, 2024, 2:53 AM -07:00
Diffstat (limited to 'wk9')
-rw-r--r--wk9/lect/froshims/templates/failure.html7
-rw-r--r--wk9/lect/froshims/templates/success.html7
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 %}