{% extends "layout/basic.html" %} {% block content %}

{% if joinSettings %} {{ _('Join {0}').format(domainInfo['name']) }} {% else %} {{ _('You are invited to join {0}').format(domainInfo['name']) }} {% endif %}

{{ _('By clicking the button, you will become a member of the domain {0}.').format(domainInfo['name']) }}

{{ _('The domain owner:') }} {{ user.render_inline(domainInfo['owner']) }}

{% if domainInfo['bulletin'] %}
{{ domainInfo['bulletin']|markdown }}
{% endif %}
{% if joinSettings['method'] == model.domain.JOIN_METHOD_CODE %} {{ form.form_text({ columns:None, label:'Invitation Code', name:'code', required:true, help_text:'You need to enter the invitation code to join the domain.', value:code, autofocus:true }) }} {% endif %}
{% endblock %}