mirror of https://github.com/zulip/zulip.git
24 lines
694 B
HTML
24 lines
694 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block content %}
|
|
<p>Hi {{ user_profile.full_name }},</p>
|
|
|
|
<p>You can log in to your Zulip organization, {{ user_profile.realm.name }},
|
|
at the following link:</p>
|
|
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td align="center">
|
|
<a href="{{ user_profile.realm.uri }}" style="color:#08c">{{ user_profile.realm.uri }}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<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>
|
|
{% endblock %}
|