2023-04-05 11:19:58 +02:00
|
|
|
{% extends "zerver/emails/email_base_default.html" %}
|
2017-06-10 08:18:41 +02:00
|
|
|
|
2017-08-16 12:10:55 +02:00
|
|
|
{% block illustration %}
|
2020-01-24 08:30:26 +01:00
|
|
|
<img src="{{ email_images_base_uri }}/registration_confirmation.png" alt=""/>
|
2017-08-16 12:10:55 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
2017-06-10 08:18:41 +02:00
|
|
|
{% block content %}
|
|
|
|
<p>
|
2021-05-26 19:40:12 +02:00
|
|
|
{% if create_realm %}
|
|
|
|
{{ _('You have requested a new Zulip organization. Awesome!') }}
|
|
|
|
{% else %}
|
2018-04-26 17:13:47 +02:00
|
|
|
{{ _('You recently signed up for Zulip. Awesome!') }}
|
2021-05-26 19:40:12 +02:00
|
|
|
{% endif %}
|
2017-06-10 08:18:41 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
2021-05-26 19:40:12 +02:00
|
|
|
{% if create_realm %}
|
|
|
|
{{ _('Click the button below to create the organization and register your account.') }}
|
|
|
|
{% else %}
|
2018-12-19 19:47:58 +01:00
|
|
|
{{ _('Click the button below to complete registration.') }}
|
2021-05-26 19:40:12 +02:00
|
|
|
{% endif %}
|
2018-04-26 17:13:47 +02:00
|
|
|
<a class="button" href="{{ activate_url }}">{{ _('Complete registration') }}</a>
|
2017-06-10 08:18:41 +02:00
|
|
|
</p>
|
2023-02-20 18:24:28 +01:00
|
|
|
<p>
|
|
|
|
{% if corporate_enabled %}
|
|
|
|
{{macros.contact_us_zulip_cloud(support_email)}}
|
|
|
|
{% else %}
|
|
|
|
{{macros.contact_us_self_hosted(support_email)}}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
2017-06-10 08:18:41 +02:00
|
|
|
{% endblock %}
|