Skip to content

Commit 397d89b

Browse files
committed
LOGIN - Remove default credentials
1 parent 35777c9 commit 397d89b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

authentication/forms.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ class LoginForm(forms.Form):
1212
widget=forms.TextInput(
1313
attrs={
1414
"placeholder" : "Username",
15-
"class": "form-control",
16-
"value": "test"
15+
"class": "form-control"
1716
}
1817
))
1918
password = forms.CharField(
2019
widget=forms.PasswordInput(
2120
attrs={
2221
"placeholder" : "Password",
23-
"class": "form-control",
24-
"value": "ApS12_ZZs8"
22+
"class": "form-control"
2523
}
2624
))
2725

0 commit comments

Comments
 (0)