mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Safe error handling on the login form.
This commit is contained in:
parent
d2a31cfb82
commit
879494eb18
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
<div class="NB-login">
|
||||
{% if login_form.errors %}
|
||||
{% for field, error in login_form.errors.items %}
|
||||
{{ error }}
|
||||
{{ error|safe }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
<!--
|
||||
|
@ -70,7 +70,7 @@
|
|||
|
||||
{% if signup_form.errors %}
|
||||
{% for field, error in signup_form.errors.items %}
|
||||
{{ error }}
|
||||
{{ error|safe }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue