Skip to content

Commit 9141cf6

Browse files
author
AppSeed
committed
Added login default credentials
1 parent 5cc32b9 commit 9141cf6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

authentication/forms.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ class LoginForm(forms.Form):
1212
widget=forms.TextInput(
1313
attrs={
1414
"placeholder" : "Username",
15-
"class": "form-control"
15+
"class": "form-control",
16+
"value": "test"
1617
}
1718
))
1819
password = forms.CharField(
1920
widget=forms.PasswordInput(
2021
attrs={
2122
"placeholder" : "Password",
22-
"class": "form-control"
23+
"class": "form-control",
24+
"value": "ApS12_ZZs8"
2325
}
2426
))
2527

0 commit comments

Comments
 (0)