2017-07-06 05:14:00 +02:00
|
|
|
{% extends "zerver/emails/email_base_default.html" %}
|
2017-06-10 08:18:41 +02:00
|
|
|
|
|
|
|
{% block content %}
|
2017-01-05 03:42:53 +01:00
|
|
|
<p>Hi {{ user_profile.full_name }},</p>
|
2016-12-20 10:41:46 +01:00
|
|
|
|
2017-01-05 03:42:53 +01:00
|
|
|
<p>You can log in to your Zulip organization, {{ user_profile.realm.name }},
|
|
|
|
at the following link:</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">
|
|
|
|
<a href="{{ user_profile.realm.uri }}" style="color:#08c">{{ user_profile.realm.uri }}</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2017-01-05 03:42:53 +01:00
|
|
|
</table>
|
2016-12-20 10:41:46 +01:00
|
|
|
|
2017-01-05 03:42:53 +01:00
|
|
|
<p>The email address associated with your account is <b>{{ user_profile.email }}</b>.</p>
|
|
|
|
|
|
|
|
<p>If you have trouble signing in, please contact Zulip support by replying to
|
|
|
|
this email.</p>
|
|
|
|
|
|
|
|
<p>Thanks for using Zulip!</p>
|
2017-06-10 08:18:41 +02:00
|
|
|
{% endblock %}
|