Skip to content

Commit

Permalink
Remove login default credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
AppSeed committed Sep 10, 2020
1 parent bf16fd4 commit e1ee50d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions authentication/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,14 @@ class LoginForm(forms.Form):
widget=forms.TextInput(
attrs={
"placeholder" : "Username",
"class": "form-control",
"value": "test"
"class": "form-control"
}
))
password = forms.CharField(
widget=forms.PasswordInput(
attrs={
"placeholder" : "Password",
"class": "form-control",
"value": "ApS12_ZZs8"
"class": "form-control"
}
))

Expand Down

0 comments on commit e1ee50d

Please sign in to comment.