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">
|
|
|
|
<p>
|
|
|
|
{% trans %}
|
2018-04-25 02:59:20 +02:00
|
|
|
No account found for {{ email }}.
|
2017-08-28 19:24:08 +02:00
|
|
|
{% endtrans %}
|
|
|
|
</p>
|
2018-04-25 02:59:20 +02:00
|
|
|
<div style="text-align: center;">
|
2017-08-28 19:24:08 +02:00
|
|
|
<form class="form-inline" id="send_confirm" name="send_confirm"
|
2018-04-05 08:38:46 +02:00
|
|
|
action="/login/" method="get">
|
2017-08-28 19:24:08 +02:00
|
|
|
<input type="hidden"
|
2018-04-03 10:07:23 +02:00
|
|
|
id="email"
|
|
|
|
name="email"
|
|
|
|
value="{{ email }}" />
|
2017-08-28 19:24:08 +02:00
|
|
|
<button>
|
2018-04-25 02:59:20 +02:00
|
|
|
{{ _("Log in with another account") }}
|
2017-08-28 19:24:08 +02:00
|
|
|
</button>
|
|
|
|
</form>
|
2021-04-21 00:46:14 +02:00
|
|
|
<br />
|
2017-08-28 19:24:08 +02:00
|
|
|
<form class="form-inline" id="send_confirm" name="send_confirm"
|
2018-04-23 00:12:52 +02:00
|
|
|
action="{{ continue_link }}" method="get">
|
2017-08-28 19:24:08 +02:00
|
|
|
<button class="outline">
|
2018-04-25 02:59:20 +02:00
|
|
|
{{ _("Continue to registration") }}
|
2017-08-28 19:24:08 +02:00
|
|
|
</button>
|
2019-01-29 21:20:31 +01:00
|
|
|
{% if full_name %}
|
2021-04-21 00:46:14 +02:00
|
|
|
<input type="hidden" name="full_name" value="{{ full_name }}" />
|
2019-01-29 21:20:31 +01:00
|
|
|
{% endif %}
|
2017-08-28 19:24:08 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
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 %}
|