mirror of https://github.com/zulip/zulip.git
27 lines
691 B
HTML
27 lines
691 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>
|
|
<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 %}
|