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 }}/email_logo.png"/>
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-06-10 08:18:41 +02:00
|
|
|
{% block content %}
|
2018-12-19 20:53:14 +01:00
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
Hi {{ user_name }},
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2018-04-26 17:30:31 +02:00
|
|
|
|
|
|
|
<p>{% trans %}You can log in to your Zulip organization, {{ realm_name }},
|
|
|
|
at the following link:{% endtrans %}</p>
|
2016-12-20 10:41:46 +01:00
|
|
|
|
2017-01-05 03:42:53 +01:00
|
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
2017-06-14 00:29:28 +02:00
|
|
|
<tr>
|
|
|
|
<td align="center">
|
2018-04-26 17:30:31 +02:00
|
|
|
<a href="{{ realm_uri }}">{{ realm_uri }}</a>
|
2017-06-14 00:29:28 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
2017-01-05 03:42:53 +01:00
|
|
|
</table>
|
2016-12-20 10:41:46 +01:00
|
|
|
|
2018-04-26 17:30:31 +02:00
|
|
|
<p>{% trans %}The email address associated with your account is {{ email }}.{% endtrans %}</p>
|
2017-01-05 03:42:53 +01:00
|
|
|
|
2018-04-26 17:30:31 +02:00
|
|
|
<p>{% trans %}If you have trouble logging in, please contact Zulip support by replying to
|
|
|
|
this email.{% endtrans %}</p>
|
2017-01-05 03:42:53 +01:00
|
|
|
|
2018-04-26 17:30:31 +02:00
|
|
|
<p>{{ _("Thanks for using Zulip!") }}</p>
|
2017-06-10 08:18:41 +02:00
|
|
|
{% endblock %}
|