{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block breadcrumbs %} {% if has_permission %} {% endif %} {% endblock %} {% block content %}

{% trans "Confirm details before starting registration." %}

{% csrf_token %}

{% trans "Local confirmation node" %}

{{ local_node.hostname|default:"—" }}
{{ local_node.address|default:"—" }}
{{ local_node.port|default:"—" }}

{% trans "Visitor node" %}

{% trans "Use port 8888 unless the visitor node is configured to listen on a different port." %}

{% trans "Reminder: To complete the registration handshake, open the visitor node in another browser tab using its https:// address (for example https://host:8888)." %}

{% if https_warnings %}
{% trans "HTTPS required" %}
    {% for warning in https_warnings %}
  • {{ warning }}
  • {% endfor %}
{% endif %}
{{ server_summary.message|default:_("Waiting to start registration.") }}
{% endblock %}