Fix missing double-quote mark in email templates

This commit is contained in:
badblocks 2025-05-18 11:29:52 -07:00
parent e4b76aa7cf
commit 48102b1e2a
12 changed files with 32 additions and 17 deletions

View file

@ -16,17 +16,17 @@
{{ form.non_field_errors }}
{% for field in form %}
<div>
<label for="{{ field.id_for_label }}" class="block font-medium>{{ field.label }}</label>
<label for="{{ field.id_for_label }}" class="block font-medium">{{ field.label }}</label>
{{ field }}
{{ field.errors }}
</div>
{% endfor %}
{{ redirect_field }}
<button type="submit" class="btn btn-primary w-full">{% trans "Request Code" %}</button>
<button type="submit" class="btn btn-primary w-full">{% trans "Request Sign-In Code" %}</button>
</form>
{% url 'account_login' as login_url %}
<div class="mt-4 text-center">
<a href="{{ login_url }}" class="text-primary underline">{% trans "Other sign-in options" %}</a>
<a href="{{ login_url }}" class="text-primary underline">{% trans "Login by Password" %}</a>
</div>
</div>
{% endblock content %}