mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
If the provided mail address has not ordered anything, there will still be a mail generated and sent to an invalid mail address, to avoid obvious timing attacks to determine active users.
This commit is contained in:
committed by
Raphael Michel
parent
841cfe52a2
commit
7e19effe3c
7
src/pretix/presale/forms/user.py
Normal file
7
src/pretix/presale/forms/user.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django import forms
|
||||
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class ResendLinkForm(forms.Form):
|
||||
email = forms.EmailField(label=_('E-mail'))
|
||||
Reference in New Issue
Block a user