mirror of https://github.com/zulip/zulip.git
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/registration_confirmation.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>
|
|
{% if create_realm %}
|
|
{{ _("You have requested a new Zulip organization:") }}
|
|
<ul>
|
|
<li>{% trans %}Organization URL: {{ organization_url }}{% endtrans %}</li>
|
|
<li>{% trans %}Organization type: {{ organization_type }}{% endtrans %}</li>
|
|
</ul>
|
|
{% else %}
|
|
{{ _("You recently signed up for Zulip. Awesome!") }}
|
|
{% endif %}
|
|
</p>
|
|
<p>
|
|
{% if create_realm %}
|
|
{{ _("Click the button below to create the organization and register your account. You'll be able to update the information above if you like.") }}
|
|
{% else %}
|
|
{{ _("Click the button below to complete registration.") }}
|
|
{% endif %}
|
|
<a class="button" href="{{ activate_url }}">{{ _("Complete registration") }}</a>
|
|
</p>
|
|
<p>
|
|
{% if corporate_enabled %}
|
|
{{macros.contact_us_zulip_cloud(support_email)}}
|
|
{% else %}
|
|
{{macros.contact_us_self_hosted(support_email)}}
|
|
{% endif %}
|
|
</p>
|
|
{% endblock %}
|