Skip to content

Commit ea37a80

Browse files
author
App Generator
committed
Initial release
1 parent 662c61e commit ea37a80

File tree

2,719 files changed

+57682
-69099
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,719 files changed

+57682
-69099
lines changed

LICENSE_commercial.md

Lines changed: 0 additions & 59 deletions
This file was deleted.

authentication/forms.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ class LoginForm(forms.Form):
1212
widget=forms.TextInput(
1313
attrs={
1414
"placeholder" : "Username",
15-
"class": "form-control"
15+
"class": "form-control form-control-lg"
1616
}
1717
))
1818
password = forms.CharField(
1919
widget=forms.PasswordInput(
2020
attrs={
2121
"placeholder" : "Password",
22-
"class": "form-control"
22+
"class": "form-control form-control-lg"
2323
}
2424
))
2525

@@ -28,28 +28,28 @@ class SignUpForm(UserCreationForm):
2828
widget=forms.TextInput(
2929
attrs={
3030
"placeholder" : "Username",
31-
"class": "form-control"
31+
"class": "form-control form-control-lg"
3232
}
3333
))
3434
email = forms.EmailField(
3535
widget=forms.EmailInput(
3636
attrs={
3737
"placeholder" : "Email",
38-
"class": "form-control"
38+
"class": "form-control form-control-lg"
3939
}
4040
))
4141
password1 = forms.CharField(
4242
widget=forms.PasswordInput(
4343
attrs={
4444
"placeholder" : "Password",
45-
"class": "form-control"
45+
"class": "form-control form-control-lg"
4646
}
4747
))
4848
password2 = forms.CharField(
4949
widget=forms.PasswordInput(
5050
attrs={
5151
"placeholder" : "Password check",
52-
"class": "form-control"
52+
"class": "form-control form-control-lg"
5353
}
5454
))
5555

0 commit comments

Comments
 (0)