2017-09-26 01:41:15 +02:00
|
|
|
{% extends "zerver/emails/compiled/email_base_default.html" %}
|
2017-06-10 08:18:41 +02:00
|
|
|
|
2017-08-16 12:10:55 +02:00
|
|
|
{% block illustration %}
|
|
|
|
<img src="{{ email_images_base_uri }}/registration_confirmation.png"/>
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-06-10 08:18:41 +02:00
|
|
|
{% block content %}
|
2018-04-26 19:31:55 +02:00
|
|
|
<p>{{ _("Hi there,") }}
|
2017-12-06 22:31:11 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
2018-04-26 19:31:55 +02:00
|
|
|
{% trans %}
|
2018-12-19 23:47:27 +01:00
|
|
|
{{ referrer_full_name }} (<a href="mailto:{{ referrer_email }}">{{ referrer_email }}</a>)
|
|
|
|
wants you to join them on Zulip — the team communication tool designed for productivity.
|
2018-04-26 19:31:55 +02:00
|
|
|
{% endtrans %}
|
2017-12-06 22:31:11 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
2018-12-19 23:47:27 +01:00
|
|
|
{{ _("To get started, click the button below.") }}
|
2018-04-26 19:31:55 +02:00
|
|
|
<a class="button" href="{{ activate_url }}">{{ _("Complete registration") }}</a>
|
2017-12-06 22:31:11 +01:00
|
|
|
</p>
|
|
|
|
<p>
|
2018-12-19 23:47:27 +01:00
|
|
|
{% trans %}
|
|
|
|
Contact us any time at
|
|
|
|
<a href="mailto:{{ support_email }}">{{ support_email }}</a>
|
|
|
|
if you run into trouble, have any feedback, or just want to chat!
|
|
|
|
{% endtrans %}
|
2017-12-06 22:31:11 +01:00
|
|
|
</p>
|
2017-06-10 08:18:41 +02:00
|
|
|
{% endblock %}
|