mirror of https://github.com/zulip/zulip.git
26 lines
802 B
HTML
26 lines
802 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/registration_confirmation.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>{{ _("Hi there,") }}</p>
|
|
|
|
<p>
|
|
{% trans referrer_name=macros.referrer_email_tag(referrer_email, referrer_full_name) %}{{ referrer_name }} wants you to join them on Zulip — the team communication tool designed for productivity.{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{{ _("To get started, click the button below.") }}
|
|
<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 %}
|