mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 14:17:19 +00:00
Merge pull request #7 from apoclyps/docker-support
[ISSUE-3] Adding docker support
This commit is contained in:
@@ -6,26 +6,19 @@ from snowpenguin.django.recaptcha2.widgets import ReCaptchaWidget
|
||||
|
||||
class LoginForm(forms.Form):
|
||||
|
||||
username = forms.CharField(max_length=50,
|
||||
label='',
|
||||
widget=forms.TextInput(
|
||||
attrs={
|
||||
'class': 'form-control',
|
||||
'placeholder': 'Username',
|
||||
'autofocus': True,
|
||||
'required': True,
|
||||
}
|
||||
))
|
||||
password = forms.CharField(label='Password',
|
||||
widget=forms.PasswordInput(
|
||||
attrs={
|
||||
'class': 'form-control',
|
||||
'placeholder': 'Username',
|
||||
'required': True,
|
||||
}
|
||||
))
|
||||
username = forms.CharField(
|
||||
max_length=50,
|
||||
label="",
|
||||
widget=forms.TextInput(
|
||||
attrs={"class": "form-control", "placeholder": "Username", "autofocus": True, "required": True}
|
||||
),
|
||||
)
|
||||
password = forms.CharField(
|
||||
label="Password",
|
||||
widget=forms.PasswordInput(attrs={"class": "form-control", "placeholder": "Username", "required": True}),
|
||||
)
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(LoginForm, self).__init__(*args, **kwargs)
|
||||
if settings.CBREADER_USE_RECAPTCHA if hasattr(settings, 'CBREADER_USE_RECAPTCHA') else False:
|
||||
self.fields['captcha'] = ReCaptchaField(widget=ReCaptchaWidget())
|
||||
if settings.CBREADER_USE_RECAPTCHA if hasattr(settings, "CBREADER_USE_RECAPTCHA") else False:
|
||||
self.fields["captcha"] = ReCaptchaField(widget=ReCaptchaWidget())
|
||||
|
||||
Reference in New Issue
Block a user