diff --git a/templates/registration/activate.html b/templates/registration/activate.html new file mode 100644 index 0000000..7999340 --- /dev/null +++ b/templates/registration/activate.html @@ -0,0 +1,17 @@ +{% load i18n %} + +{% block Content %} +{% if account %} +
{% with account.username as username %}
+ Thank you for registering!
+ From now on, you can login with your username ({{ username }}).
+
+ Back
+ {% endwith %}
+
Either the link was invalid, or you didn't activate your account within {{ expiration_days }} days after the registration. Please register again.
+{% endif %} + +{% endblock %} + diff --git a/templates/registration/activation_email.txt b/templates/registration/activation_email.txt new file mode 100644 index 0000000..472918a --- /dev/null +++ b/templates/registration/activation_email.txt @@ -0,0 +1,13 @@ +{% load i18n %} +Hello, + +someone registered to {{ site }} and specified this EMail address. If this is correct, please follow this link to activate the account: + +http://{{ site|slice:":-1" }}{% url registration_activate activation_key=activation_key %} + +In case you didn't register, please ignore this Mail. The account will be deleted in {{ expiration_days }} days and you will not receive any more mail from us. + +Regards, + +Matalok +Mumble Admin diff --git a/templates/registration/activation_email_subject.txt b/templates/registration/activation_email_subject.txt new file mode 100644 index 0000000..5af014e --- /dev/null +++ b/templates/registration/activation_email_subject.txt @@ -0,0 +1 @@ +Account verification diff --git a/templates/registration/imprint.html b/templates/registration/imprint.html new file mode 100644 index 0000000..04078b7 --- /dev/null +++ b/templates/registration/imprint.html @@ -0,0 +1,17 @@ +{% load mumble_extras %} +{% load i18n %} + +{% block Headline %}{% trans "Imprint" %}{% endblock %} + +{% block Content %} +
+ This is Mumble-Django, a Murmur config application for Django that configures a Mumble server. It is able to create and remove server instances, start/stop them, and configure them.
+
+ Furthermore, registered Django users can sign up for user accounts on the configured vservers and change their registration names and passwords, and Django admins can manage server admins through the webinterface.
+
+ It is being developed by Michael "Svedrin" Ziegler.
+
All JavaScript elements were implemented using the ExtJS JavaScript library.
+Username or password don't exist or are not correct. Please try again.
+{% endif %} + + + +{% endblock %} + diff --git a/templates/registration/logout.html b/templates/registration/logout.html new file mode 100644 index 0000000..ed7e791 --- /dev/null +++ b/templates/registration/logout.html @@ -0,0 +1,9 @@ +{% load i18n %} + +{% block Headline %}Logged out{% endblock %} + +{% block Content %} +Thank you for visiting. +
+{% endblock %} diff --git a/templates/registration/profile.html b/templates/registration/profile.html new file mode 100644 index 0000000..353aec3 --- /dev/null +++ b/templates/registration/profile.html @@ -0,0 +1,69 @@ +{% load i18n %} + +{% block Content %} +| Service | Server | Status | Login | Other | |
| Mumble | mumble.dredd.it | Active | {{ mumbleacc.name }} | Delete | |
| Mumble | mumble.dredd.it | Inactive | N/A | +{% if eveapi %} +Create Mumble Login | +{% else %} ++{% endif %} + |
| Jabber | jabber.dredd.it | Active | {{ user.username }}@dredd.it | ||
| Jabber | jabber.dredd.it | Inactive | |||
| Wiki | wiki.dredd.it | Active | {{ user.username }} | ||
| Wiki | wiki.dredd.it | Inactive | |||
| Forums | forum.dredd.it | Unkown | {{ user.username }} | ||
| Forums | forum.dredd.it | Unknown |
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. +
+{% endblock %} + diff --git a/templates/registration/registration_form.html b/templates/registration/registration_form.html new file mode 100644 index 0000000..f042f5d --- /dev/null +++ b/templates/registration/registration_form.html @@ -0,0 +1,15 @@ +{% load i18n %} + +{% block Headline %}Create Account{% endblock %} + +{% block Content %} +Please fill in the following form.
+ + +{% endblock %}