Fix missing double-quote mark in email templates
This commit is contained in:
parent
e4b76aa7cf
commit
48102b1e2a
12 changed files with 32 additions and 17 deletions
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue