27 lines
876 B
HTML
27 lines
876 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="site-title">check your email</div>
|
|
<div class="site-subtitle">:: we sent a verification link to {{ email }} ::</div>
|
|
|
|
<hr class="divider">
|
|
|
|
<div class="post">
|
|
<div class="post-body">
|
|
<p>We've sent a verification email to <strong>{{ email }}</strong>.</p>
|
|
<p>Click the link in the email to verify your account.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="post" style="margin-top:12px;">
|
|
<div class="post-body">
|
|
<p style="color:#888;font-size:12px;">Didn't receive it? You can request another:</p>
|
|
<form method="post" action="/auth/resend-verification">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
<input type="hidden" name="email" value="{{ email }}">
|
|
<button class="form-submit" type="submit">resend verification →</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|