diff --git a/templates/404.html b/templates/404.html index e69de29..9f7862d 100644 --- a/templates/404.html +++ b/templates/404.html @@ -0,0 +1,34 @@ + + + + 404 + + + +
+ + +
+

404 - Derp not found

+
+ +
+ + + diff --git a/templates/500.html b/templates/500.html index 9199fdb..04f2a6a 100644 --- a/templates/500.html +++ b/templates/500.html @@ -1,2 +1,3 @@ -

Server has been podded, BRB

+

Oops, it seems the server got ganked, CONCORD have been informed.

+ diff --git a/templates/base.html b/templates/base.html index 17dd972..d550606 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,6 +3,7 @@ + {% block HeadTag %}{% endblock %}
@@ -14,7 +15,12 @@
diff --git a/templates/registration/activate.html b/templates/registration/activate.html index 6befc24..f44852d 100644 --- a/templates/registration/activate.html +++ b/templates/registration/activate.html @@ -1,6 +1,8 @@ +{% extends "base.html" %} + {% load i18n %} -{% block Content %} +{% block content %} {% if account %}

{% with account.username as username %} Thank you for registering!
diff --git a/templates/registration/logout.html b/templates/registration/logout.html index ed7e791..9ee8667 100644 --- a/templates/registration/logout.html +++ b/templates/registration/logout.html @@ -1,8 +1,10 @@ +{% extends "base.html" %} + {% load i18n %} -{% block Headline %}Logged out{% endblock %} +{% block title %}Logged out{% endblock %} -{% block Content %} +{% block content %}

You have been logged out.

Thank you for visiting.

diff --git a/templates/registration/registration_complete.html b/templates/registration/registration_complete.html index 982b12c..59880a9 100644 --- a/templates/registration/registration_complete.html +++ b/templates/registration/registration_complete.html @@ -1,6 +1,8 @@ +{% extends "base.html" %} + {% load i18n %} -{% block Content %} +{% block content %}

Thank you for registering. In order to prohibit misuse, you need to activate your account before you can use it. We sent an EMail with further instructions to the address you specified, please follow the link in that email to activate your account.

diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html index f042f5d..8953b86 100644 --- a/templates/registration/registration_form.html +++ b/templates/registration/registration_form.html @@ -1,8 +1,10 @@ +{% extends "base.html" %} + {% load i18n %} -{% block Headline %}Create Account{% endblock %} +{% block title %}Create Account{% endblock %} -{% block Content %} +{% block content %}

Create Account

Please fill in the following form.