Coverage for website/forms/LoginForm.py: 100%
4 statements
« prev ^ index » next coverage.py v7.5.0, created at 2025-09-13 15:29 -0300
« prev ^ index » next coverage.py v7.5.0, created at 2025-09-13 15:29 -0300
1from website.forms import *
4class LoginForm(forms.Form):
5 email = forms.CharField(label="Email", widget=forms.EmailInput)
6 password = forms.CharField(
7 label="Senha", widget=forms.PasswordInput, required=False
8 )