diff --git a/netbox/templates/login.html b/netbox/templates/login.html index 842f7e4930a..ff687d6bce5 100644 --- a/netbox/templates/login.html +++ b/netbox/templates/login.html @@ -46,7 +46,21 @@

{% trans "Log In" %}

{% endif %} - {% render_form form %} +
+ + {{ form.username }} + {% for error in form.username.errors %} +
{{ error }}
+ {% endfor %} +
+ +
+ + {{ form.password }} + {% for error in form.password.errors %} +
{{ error }}
+ {% endfor %} +