diff options
Diffstat (limited to 'wk9/lect/froshims/templates')
-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 %} |