forked from enviPath/enviPy
6 lines
92 B
Python
6 lines
92 B
Python
from django import forms
|
|
|
|
|
|
class EmailLoginForm(forms.Form):
|
|
email = forms.EmailField()
|