Confirmation templates

This commit is contained in:
Mouse Reeve
2021-08-06 17:23:44 -07:00
parent 5926224d7e
commit 1ad057d89d
6 changed files with 92 additions and 15 deletions

View File

@ -0,0 +1,19 @@
{% extends "components/inline_form.html" %}
{% load i18n %}
{% block header %}
{% trans "Resend confirmation link" %}
{% endblock %}
{% block form %}
<form name="resend" method="post" action="{#% url 'resend-link' %#}">
<div class="field">
<label class="label" for="email">{% trans "Email address:" %}</label>
<div class="control">
<input type="text" class="input" required id="email">
</div>
</div>
<div class="control">
<button class="button is-link">{% trans "Resend link" %}</button>
</div>
</form>
{% endblock %}