2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
2015-11-03 09:37:07 +01:00
|
|
|
{% load i18n %}
|
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">
|
2015-11-03 09:37:07 +01:00
|
|
|
<h2>{% trans "Thanks for signing up!" %}</h2>
|
|
|
|
<p class="lead">{% trans "Check your email so we can get started" %}.</p>
|
2012-09-28 22:47:05 +02:00
|
|
|
|
2015-11-03 09:37:07 +01:00
|
|
|
<p>{% blocktrans %}Still no email? We can <a href="#" id="resend_email_link">resend it</a>{% endblocktrans %}.<br/>
|
|
|
|
<small>({% trans "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;">
|
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>
|
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 %}
|
|
|
|
{{ 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 %}
|