diff options
-rw-r--r-- | aloha/template/404.html | 14 | ||||
-rw-r--r-- | aloha/template/500.html | 15 |
2 files changed, 29 insertions, 0 deletions
diff --git a/aloha/template/404.html b/aloha/template/404.html new file mode 100644 index 0000000..bbc1331 --- /dev/null +++ b/aloha/template/404.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + + +{% block title %}Login{% endblock title %} + +{% block content %} +<h2> Welcome to the JAM 2012 Admission website</h2> +<h2>The page you are requesting is not available</h2> +<hr /> + +<h3>Please follow this <a href="/allotter">link</a> to login</h3> + +{% endblock content %} + diff --git a/aloha/template/500.html b/aloha/template/500.html new file mode 100644 index 0000000..b55f7dd --- /dev/null +++ b/aloha/template/500.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + + +{% block title %}Login{% endblock title %} + +{% block content %} +<h2> Welcome to the JAM 2012 Admission website</h2> +<h2>Internal Server Error...</h2> +<h3>Looks like something has gone wrong. An email has been sent to the administrator</h3> +<hr /> + +<h3>Please follow this <a href="/allotter">link</a> to login</h3> + +{% endblock content %} + |