diff --git a/templates/mailman-django/login.html b/templates/mailman-django/login.html new file mode 100644 index 0000000..4b8d12a --- /dev/null +++ b/templates/mailman-django/login.html @@ -0,0 +1,24 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + +{% block content %} + +

{% trans "Login Required" %}

+ +

You are required to login to continue. Please provide a valid email address and a password.

+ +{% if message %} +

{{ message }}

+{% endif %} + +
+ +{{ form.as_div }} + +
+ +
+ +
+ +{% endblock %} diff --git a/templates/mailman-django/user_settings.html b/templates/mailman-django/user_settings.html new file mode 100644 index 0000000..f6ed9b3 --- /dev/null +++ b/templates/mailman-django/user_settings.html @@ -0,0 +1,45 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + + +{% block content %} +{% ifequal tab "membership"%} +

{% trans "Membership Settings" %} {% if listname %}{% trans "for"%}{% endif %} {{ listname }}

+{% else %} +

{% trans "User Settings" %}

+{% endifequal %} +
+ + + +

Logout

+ +

This page visualizes the user/membership settings. Currently the page is not connected to the rest server so the settings will not be saved when changing them. However, this gives an idea of what the settings page could look like.

+ + +{% if message %} +

{{ message }}

+{% endif %} + + +{% if form %} +
+ +
+{% else %} + +{% endif %} + +{% endblock %} \ No newline at end of file