2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
2012-10-16 06:03:29 +02:00
|
|
|
{# Displayed after a user attempts to sign up. #}
|
|
|
|
|
2012-10-16 05:49:53 +02:00
|
|
|
{% block portico_content %}
|
2019-03-16 07:14:49 +01:00
|
|
|
<!-- The following empty tag has unique data-page-id so that this
|
|
|
|
page can be easily identified in it's respective JavaScript file -->
|
|
|
|
<div data-page-id="accounts-send-confirm"></div>
|
2013-09-13 06:06:10 +02:00
|
|
|
<div class="app portico-page">
|
2017-05-03 19:49:10 +02:00
|
|
|
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
|
|
|
|
<div class="inline-block">
|
2012-09-28 22:47:05 +02:00
|
|
|
|
2017-05-03 19:49:10 +02:00
|
|
|
<div class="get-started">
|
|
|
|
<h1>{{ _("Thanks for signing up!") }}</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="white-box">
|
|
|
|
<p>{{ _("Check your email so we can get started.") }}</p>
|
|
|
|
|
2017-09-30 20:33:47 +02:00
|
|
|
{% include 'zerver/dev_env_email_access_details.html' %}
|
2017-05-03 19:49:10 +02:00
|
|
|
|
2017-08-15 22:00:09 +02:00
|
|
|
<p>{% trans %}Still no email? We can <a href="#" id="resend_email_link">resend it</a>.{% endtrans %}
|
2021-12-02 17:10:42 +01:00
|
|
|
<i class="grey">({{ _("Just in case, take a look at your Spam folder.") }})</i></p>
|
2018-08-24 10:22:11 +02:00
|
|
|
{% if realm_creation %}
|
|
|
|
<form class="resend_confirm" action="/new/" method="post" style="position: absolute;">
|
2017-05-03 19:49:10 +02:00
|
|
|
{{ csrf_input }}
|
|
|
|
<input type="hidden" class="email" id="email" value="{{ email }}" name="email"/>
|
|
|
|
</form>
|
2018-08-24 10:22:11 +02:00
|
|
|
{% else %}
|
|
|
|
<form class="resend_confirm" action="/accounts/home/" method="post" style="position: absolute;">
|
|
|
|
{{ csrf_input }}
|
|
|
|
<input type="hidden" class="email" id="email" value="{{ email }}" name="email"/>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
2017-05-03 19:49:10 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-24 16:42:13 +01:00
|
|
|
</div>
|
2013-09-13 06:06:10 +02:00
|
|
|
</div>
|
2012-09-28 22:47:05 +02:00
|
|
|
{% endblock %}
|
2013-04-02 20:47:18 +02:00
|
|
|
|
|
|
|
{% block customhead %}
|
2016-04-21 08:48:33 +02:00
|
|
|
{{ super() }}
|
2013-04-02 20:47:18 +02:00
|
|
|
{% endblock %}
|