mirror of https://github.com/zulip/zulip.git
29 lines
806 B
HTML
29 lines
806 B
HTML
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_uri }}/registration_confirmation.png"/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{{ _("Hi there,") }}
|
|
</p>
|
|
<p>
|
|
{% trans %}
|
|
{{ referrer_full_name }} ({{ referrer_email }}) wants you to join
|
|
them on Zulip — the team communication tool designed for
|
|
productivity.
|
|
{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{{ _("To get started, please click here:") }}
|
|
<a class="button" href="{{ activate_url }}">{{ _("Complete registration") }}</a>
|
|
</p>
|
|
<p>
|
|
{% trans %}Feel free to give us a shout at <a href="mailto:{{ support_email }}">{{ support_email }}</a>, if you have any questions.{% endtrans %}
|
|
</p>
|
|
<p>
|
|
{{ _("Cheers,") }}<br />
|
|
{{ _("Zulip Team") }}
|
|
</p>
|
|
{% endblock %}
|