2021-08-07 00:23:44 +00:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{% trans "Confirm email" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1 class="title">{% trans "Confirm your email address" %}</h1>
|
|
|
|
|
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
|
|
|
<div class="block content">
|
|
|
|
<section class="block">
|
|
|
|
<p>{% trans "A confirmation code has been sent to the email address you used to register your account." %}</p>
|
|
|
|
{% if not valid %}
|
|
|
|
<p class="notification is-warning">{% trans "Sorry! We couldn't find that code." %}</p>
|
|
|
|
{% endif %}
|
|
|
|
<form name="confirm" method="post" action="{% url 'confirm-email' %}">
|
|
|
|
{% csrf_token %}
|
|
|
|
<label class="label" for="confirmation_code">{% trans "Confirmation code:" %}</label>
|
|
|
|
<div class="field has-addons">
|
|
|
|
<div class="control">
|
2021-08-07 00:39:22 +00:00
|
|
|
<input class="input" type="text" name="code" id="confirmation_code" required>
|
2021-08-07 00:23:44 +00:00
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<button class="button is-link" type="submit">{% trans "Submit" %}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="block">
|
2022-03-19 19:07:07 +00:00
|
|
|
<form name="fallback" method="GET" action="{% url 'resend-link' %}" autocomplete="off">
|
|
|
|
<button
|
|
|
|
type="submit"
|
|
|
|
class="button"
|
|
|
|
data-modal-open="resend_form"
|
|
|
|
>
|
|
|
|
{% trans "Can't find your code?" %}
|
|
|
|
</button>
|
|
|
|
</form>
|
2022-03-19 19:00:16 +00:00
|
|
|
{% include "confirm_email/resend_modal.html" with id="resend_form" %}
|
2021-08-07 00:23:44 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
<div class="box">
|
|
|
|
{% include 'snippets/about.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|