mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-22 02:32:29 +02:00
9 lines
286 B
Python
9 lines
286 B
Python
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from allianceauth.authentication.models import User
|
|
class RegistrationForm(forms.Form):
|
|
email = forms.EmailField(label=_('Email'), max_length=254, required=True)
|
|
|
|
class _meta:
|
|
model = User
|