2018-03-05 20:19:07 +01:00
|
|
|
{% extends "zerver/portico.html" %}
|
|
|
|
{% block portico_content %}
|
|
|
|
|
|
|
|
<h3>{{ _('Invalid email') }}</h3>
|
|
|
|
|
|
|
|
<p>{{ _('Hi there! Thank you for your interest in Zulip.') }}</p>
|
|
|
|
|
2018-04-06 19:33:02 +02:00
|
|
|
{% if invalid_email %}
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
The email address you are trying to sign up with is not valid.
|
|
|
|
Please sign up using a valid email address.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-03-05 20:19:07 +01:00
|
|
|
{% if closed_domain %}
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
The organization you are trying to join, {{ realm_name }},
|
|
|
|
only allows users with email addresses within the
|
|
|
|
organization. Please sign up using appropriate email address.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if disposable_emails_not_allowed %}
|
|
|
|
<p>
|
|
|
|
{% trans %}The organization you are trying to join,
|
|
|
|
{{realm_name}}, does not allow signups using disposable email
|
|
|
|
addresses. Please sign up using a real email address.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-06-20 13:08:07 +02:00
|
|
|
{% if email_contains_plus %}
|
|
|
|
<p>
|
|
|
|
{% trans %}The organization you are trying to join,
|
|
|
|
{{realm_name}}, does not allow signups using emails
|
|
|
|
that contains +. Please sign up using appropriate email address.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-03-05 20:19:07 +01:00
|
|
|
{% endblock %}
|