{% extends "bases/app.html" %} {% import "macros/new_rrset.html" as new_rrset %} {% block title %}New record - {{ current_zone }} - {% endblock title %} {% block main %}

Create a new record in zone {{ current_zone }}

{% if not new_record_name or (new_record_name and domain_error) %}

Choose the name of the new record

.{{ current_zone }}
{% if domain_error %}

{{ domain_error.description }}

{% endif %}

Only the subdomain, without the parent domain. For instance, "www" to create the subdomain "www.{{ current_zone }}".

{% elif not config and not rtype %}

Configure the domain {{ new_record_name }}...

...or create a new record for the domain {{ new_record_name }}

General

E-mails

Security

DNS Delegation

{% else %} {% if config == "web" %}

Configure a web site for the domain {{ new_record_name }}

Web servers

{% elif config == "mail" %}

Configure e-mails for the domain {{ new_record_name }}

Mail servers

Mail server #1

Security

Cryptographic signature (DKIM) #1
{% endif %} {% endif %} {% endblock %}