zulip/templates/zephyr/accounts_send_confirm.html

13 lines
619 B
HTML
Raw Normal View History

{% extends "zephyr/portico.html" %}
{% block more_content %}
<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="#" onclick="$('#email_signup').submit()">resend it</a>.<br/>
<small>(Just in case, take a look at your Spam folder.)</small></p>
<form id="email_signup" action="/accounts/home/" method="post">
{% csrf_token %}
<input type="hidden" class="email" id="email" value="{{ params.email }}" name="email"/>&nbsp;
</form>
{% endblock %}