15 lines
390 B
Python
15 lines
390 B
Python
|
|
from django import forms
|
||
|
|
from django.core import validators
|
||
|
|
from module_project import constants
|
||
|
|
|
||
|
|
class LoginForm(forms.Form):
|
||
|
|
email = forms.EmailField(
|
||
|
|
max_length=254,
|
||
|
|
widget=forms.TextInput(attrs={"autofocus": True}),
|
||
|
|
label="Email",
|
||
|
|
)
|
||
|
|
password = forms.CharField(
|
||
|
|
label="Password",
|
||
|
|
strip=False,
|
||
|
|
widget=forms.PasswordInput()
|
||
|
|
)
|