diff --git a/src/postorius/templates/postorius/domain_new.html b/src/postorius/templates/postorius/domain_new.html index f2c5089..d28bac0 100644 --- a/src/postorius/templates/postorius/domain_new.html +++ b/src/postorius/templates/postorius/domain_new.html @@ -4,11 +4,53 @@ {% block main %} {% include 'postorius/menu/settings_nav.html' %} -

{% trans "Add a new Domain" %}

-
{% csrf_token %} - {{ form.as_p }} -
- -
-
+ +
{% csrf_token %} + {{ form.non_field_errors }} +
+ Add a new Domain + +
+ {{ form.mail_host.errors }} + +
+ {{ form.mail_host}} +

Example: domain.org

+
+
+ +
+ {{ form.web_host.errors }} + +
+ {{ form.web_host}} +

Example: www.domain.org

+
+
+ +
+ {{ form.description.errors }} + +
+ {{ form.description}} +

Example: Test lists will live on this domain.

+
+
+ +
+ {{ form.contact_address.errors }} + +
+ {{ form.contact_address}} +

Example: postmaster@domain.org

+
+
+ +
+ +
+ +
+
+ {% endblock main %}