[NO-ISSUE] UI adjustments and enabling access to remote hosts when in development mode (#12)

* Fix incorrect placeholder name in password field

* Adding updated title

* Allowing * hosts via DJANGO_ALLOWED_HOSTS when in development mode
This commit is contained in:
Kyle Harrison
2019-07-29 12:54:47 +01:00
committed by Ajurna
parent f1fcfdfef8
commit 31d0e2bd66
3 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ class LoginForm(forms.Form):
)
password = forms.CharField(
label="Password",
widget=forms.PasswordInput(attrs={"class": "form-control", "placeholder": "Username", "required": True}),
widget=forms.PasswordInput(attrs={"class": "form-control", "placeholder": "Password", "required": True}),
)
def __init__(self, *args, **kwargs):