zulip/templates/zerver/emails/confirm_registration.source...

25 lines
905 B
HTML

{% extends "zerver/emails/compiled/email_base_default.html" %}
{% block illustration %}
<img src="{{ email_images_base_uri }}/registration_confirmation.png" alt=""/>
{% endblock %}
{% block content %}
<p>
{% if create_realm %}
{{ _('You have requested a new Zulip organization. Awesome!') }}
{% 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.') }}
{% else %}
{{ _('Click the button below to complete registration.') }}
{% endif %}
<a class="button" href="{{ activate_url }}">{{ _('Complete registration') }}</a>
</p>
<p>{% trans support_email=macros.email_tag(support_email) %}Contact us any time at {{ support_email }} if you run into trouble, have any feedback, or just want to chat!{% endtrans %}</p>
{% endblock %}