mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
7 lines
165 B
Python
7 lines
165 B
Python
from django import forms
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class ResendLinkForm(forms.Form):
|
|
email = forms.EmailField(label=_('E-mail'))
|