Skip to content

Commit 38b022c

Browse files
author
AppSeed
committed
Login Form - Remove default credentials
1 parent d110120 commit 38b022c

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
@@ -13,16 +13,14 @@ class LoginForm(forms.Form):
1313
widget=forms.TextInput(
1414
attrs={
1515
"placeholder" : "Username",
16-
"class": "form-control",
17-
"value": "test"
16+
"class": "form-control"
1817
}
1918
))
2019
password = forms.CharField(
2120
widget=forms.PasswordInput(
2221
attrs={
2322
"placeholder" : "Password",
24-
"class": "form-control",
25-
"value": "ApS12_ZZs8"
23+
"class": "form-control"
2624
}
2725
))
2826

0 commit comments

Comments
 (0)