Files
zulip/templates/zerver/accounts_send_confirm.html
Allen Rabinovich a6889080ce New styles for the portico pages.
(imported from commit 832ad6eb0c2a7be91152d33a6f1ed5d96880839c)
2013-10-03 09:30:21 -07:00

31 lines
995 B
HTML

{% extends "zerver/portico_signup.html" %}
{# Displayed after a user attempts to sign up. #}
{% block portico_content %}
<div class="app portico-page">
<div class="app-main portico-page-container">
<h2>Thanks for signing up!</h2>
<p class="lead">Check your email so we can get started.<p>
<p>Still no email? We can <a href="#" id="resend_email_link">resend it</a>.<br/>
<small>(Just in case, take a look at your Spam folder.)</small></p>
<form id="resend_confirm" action="/accounts/home/" method="post" style="position: absolute;">
{% csrf_token %}
<input type="hidden" class="email" id="email" value="{{ email }}" name="email"/>&nbsp;
</form>
</div>
</div>
{% endblock %}
{% block customhead %}
{{ block.super }}
<script type="text/javascript">
$(function() {
$("#resend_email_link").click(function () {
$('#resend_confirm').submit();
});
});
</script>
{% endblock %}