mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Merge pull request #3811 from UserlandAlchemist/fix/login-banner-preemptive
website: fix login banner showing before any attempt (fixes #3810)
This commit is contained in:
commit
4a85b96297
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@
|
|||
{% if user.is_authenticated %}
|
||||
<div class="alert alert-info" role="alert">You are already logged in!</div>
|
||||
{% else %}
|
||||
{% if form.errors %}
|
||||
{% if form.is_bound and form.non_field_errors %}
|
||||
<div class="alert alert-danger" role="alert">Your username and password are incorrect. Please try again.</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue