Resend confirmation: implement (and offer as an option when re-signing up

This commit is contained in:
Klaas van Schelven
2024-05-30 10:11:27 +02:00
parent 9990f58d9a
commit 3054834585
5 changed files with 83 additions and 5 deletions

View File

@@ -23,7 +23,7 @@
<div class="text-red-500 pt-1 px-2 text-sm">{{ error }}</div>
{% endfor %}
{% elif form.username.help_text %}
<div class="text-gray-500 pt-1 px-2 text-sm">{{ form.username.help_text }}</div>
<div class="text-gray-500 pt-1 px-2 text-sm">{{ form.username.help_text|safe }}</div>
{% endif %}
</div>
@@ -34,7 +34,7 @@
<div class="text-red-500 pt-1 px-2 text-sm">{{ error }}</div>
{% endfor %}
{% elif form.password1.help_text %}
<div class="text-gray-500 pt-1 px-2 text-sm">{{ form.password1.help_text }}</div>
<div class="text-gray-500 pt-1 px-2 text-sm">{{ form.password1.help_text|safe }}</div>
{% endif %}
</div>
@@ -45,7 +45,7 @@
<div class="text-red-500 pt-1 px-2 text-sm">{{ error }}</div>
{% endfor %}
{% elif form.password2.help_text %}
<div class="text-gray-500 pt-1 px-2 text-sm">{{ form.password2.help_text }}</div>
<div class="text-gray-500 pt-1 px-2 text-sm">{{ form.password2.help_text|safe }}</div>
{% endif %}
</div>