2017-04-20 08:25:15 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
|
|
|
<div class="app register-page">
|
2017-05-13 21:40:23 +02:00
|
|
|
<div class="app-main confirm-continue-page-container">
|
2017-04-20 08:25:15 +02:00
|
|
|
<div class="center-container">
|
|
|
|
<div class="center-block">
|
2017-05-13 21:40:23 +02:00
|
|
|
<div class="register-form new-style">
|
2017-08-28 19:24:08 +02:00
|
|
|
<div class="lead">
|
|
|
|
<h1 class="get-started">{{ _("Zulip account not found.") }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
|
|
{% if invalid_email %}
|
|
|
|
{# If the email address is invalid, we can't send the user #}
|
|
|
|
{# to the preregistered user code path. #}
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
|
|
|
Please click the following button if you wish to register.
|
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
<a href='/register/' class="button-new sea-green">Register</a>
|
|
|
|
{% else %}
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
2017-05-13 21:40:23 +02:00
|
|
|
|
2017-08-28 19:24:08 +02:00
|
|
|
No account found for {{ email }}. Would you like to register instead?
|
2017-05-13 21:40:23 +02:00
|
|
|
|
2017-08-28 19:24:08 +02:00
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
|
|
|
<div style="text-align: left;">
|
|
|
|
<form class="form-inline" id="send_confirm" name="send_confirm"
|
|
|
|
action="/login/" method="get">
|
|
|
|
<input type="hidden"
|
|
|
|
id="email"
|
|
|
|
name="email"
|
|
|
|
value="{{ email }}" />
|
|
|
|
<button>
|
|
|
|
{{ _("Go back to login") }}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{# TODO: Ideally, this should use whatever auth #}
|
|
|
|
{# method the user had used to get here, not just #}
|
|
|
|
{# send an email. #}
|
|
|
|
<form class="form-inline" id="send_confirm" name="send_confirm"
|
|
|
|
action="/register/" method="post">
|
|
|
|
{{ csrf_input }}
|
|
|
|
<input type="hidden"
|
|
|
|
id="email"
|
|
|
|
name="email"
|
|
|
|
value="{{ email }}" />
|
|
|
|
<button class="outline">
|
|
|
|
{{ _("Register instead") }}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2017-07-17 17:31:05 +02:00
|
|
|
</div>
|
2017-04-20 08:25:15 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="footer-padder"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|