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 @@ + + +
+
-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 @@{% 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 %}
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 %}Please fill in the following form.