zulip/templates/zerver/emails/find_team.html

24 lines
694 B
HTML
Raw Normal View History

{% extends "zerver/emails/email_base_default.html" %}
{% block content %}
<p>Hi {{ user_profile.full_name }},</p>
2016-12-20 10:41:46 +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
<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>
2016-12-20 10:41:46 +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>
{% endblock %}