36 lines
789 B
HTML
36 lines
789 B
HTML
{% extends "components/modal.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block modal-title %}
|
|
{% trans "Resend confirmation link" %}
|
|
{% endblock %}
|
|
|
|
{% block modal-form-open %}
|
|
<form name="resend" method="post" action="{% url 'resend-link' %}">
|
|
{% endblock %}
|
|
|
|
{% block modal-body %}
|
|
{% csrf_token %}
|
|
<div class="field">
|
|
<label class="label" for="email">{% trans "Email address:" %}</label>
|
|
<div class="control">
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
class="input"
|
|
id="email"
|
|
required
|
|
>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block modal-footer %}
|
|
<div class="control">
|
|
<button class="button is-link">{% trans "Resend link" %}</button>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block modal-form-close %}
|
|
</form>
|
|
{% endblock %}
|