mirror of https://github.com/zulip/zulip.git
30 lines
872 B
HTML
30 lines
872 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>
|
|
{{ referrer.full_name }} ({{ referrer.email }}) wants you to join
|
|
them on Zulip — the team communication tool designed for
|
|
productivity.
|
|
</p>
|
|
{% if custom_body %}
|
|
<p>Message from {{ referrer.full_name }}: {{ custom_body }}</p>
|
|
{% endif %}
|
|
<p>
|
|
To get started, please click here:
|
|
<a class="button" href="{{ activate_url }}">Complete registration</a>
|
|
</p>
|
|
<p>
|
|
Feel free to give us a shout at <a href="mailto:{{ support_email }}">{{ support_email }}</a>, if you have any questions.
|
|
</p>
|
|
<p>
|
|
Cheers,<br />
|
|
Team Zulip
|
|
</p>
|
|
{% endblock %}
|