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 %}
|
|
|
|
<p>
|
2018-04-26 17:13:47 +02:00
|
|
|
{{ _('You recently signed up for Zulip. Awesome!') }}
|
2017-06-10 08:18:41 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
2018-12-19 19:47:58 +01:00
|
|
|
{{ _('Click the button below to complete registration.') }}
|
2018-04-26 17:13:47 +02:00
|
|
|
<a class="button" href="{{ activate_url }}">{{ _('Complete registration') }}</a>
|
2017-06-10 08:18:41 +02:00
|
|
|
</p>
|
|
|
|
<p>
|
2018-04-26 17:13:47 +02:00
|
|
|
{% trans %}
|
2018-12-19 19:47:58 +01:00
|
|
|
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!
|
2018-04-26 17:13:47 +02:00
|
|
|
{% endtrans %}
|
2017-06-10 08:18:41 +02:00
|
|
|
</p>
|
|
|
|
{% endblock %}
|