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 %}
|
2013-09-13 06:06:10 +02:00
|
|
|
<div class="app portico-page">
|
|
|
|
<div class="app-main portico-page-container">
|
2016-04-21 08:48:33 +02:00
|
|
|
<h2>{{ _("Thanks for signing up!") }}</h2>
|
|
|
|
<p class="lead">{{ _("Check your email so we can get started") }}.</p>
|
2012-09-28 22:47:05 +02:00
|
|
|
|
2016-04-21 08:48:33 +02:00
|
|
|
<p>{% trans %}Still no email? We can <a href="#" id="resend_email_link">resend it</a>{% endtrans %}.<br/>
|
|
|
|
<small>({{ _("Just in case, take a look at your Spam folder") }}.)</small></p>
|
2013-09-13 06:06:10 +02:00
|
|
|
<form id="resend_confirm" action="/accounts/home/" method="post" style="position: absolute;">
|
2016-04-21 08:48:33 +02:00
|
|
|
{{ csrf_input }}
|
2013-04-02 20:07:52 +02:00
|
|
|
<input type="hidden" class="email" id="email" value="{{ email }}" name="email"/>
|
2012-09-28 22:47:05 +02:00
|
|
|
</form>
|
2013-09-13 06:06:10 +02:00
|
|
|
</div>
|
|
|
|
</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
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2013-04-03 18:51:36 +02:00
|
|
|
$("#resend_email_link").click(function () {
|
|
|
|
$('#resend_confirm').submit();
|
|
|
|
});
|
2013-04-02 20:47:18 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|