mirror of https://github.com/zulip/zulip.git
25 lines
590 B
HTML
25 lines
590 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>Hello there.
|
|
</p>
|
|
<p>
|
|
You recently signed up for Zulip. Awesome!
|
|
</p>
|
|
<p>
|
|
To complete signup, 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 %}
|