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 %}
|
2012-10-11 17:17:50 +02:00
|
|
|
<h2>Thanks for signing up!</h2>
|
2012-09-28 22:47:05 +02:00
|
|
|
<p class="lead">Check your email so we can get started.<p>
|
|
|
|
|
2013-04-02 20:47:18 +02:00
|
|
|
<p>Still no email? We can <a href="#" id="resend_email_link">resend it</a>.<br/>
|
2012-09-28 22:47:05 +02:00
|
|
|
<small>(Just in case, take a look at your Spam folder.)</small></p>
|
2013-04-03 18:51:36 +02:00
|
|
|
<form id="resend_confirm" action="/accounts/home/" method="post">
|
2012-09-28 22:47:05 +02:00
|
|
|
{% csrf_token %}
|
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>
|
|
|
|
{% endblock %}
|
2013-04-02 20:47:18 +02:00
|
|
|
|
|
|
|
{% block customhead %}
|
|
|
|
{{ block.super }}
|
|
|
|
<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 %}
|