This commit is contained in:
adii1823
2021-10-28 17:41:38 +05:30
parent 03bb4d43c0
commit 0a0ceaf7d7
51 changed files with 2945 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# apic/rails/forms.py
from django import forms
class AuthenticateForm(forms.Form):
email = forms.EmailField(max_length=256, label="Username")
password = forms.CharField(
label="Password", widget=forms.PasswordInput
)