aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/payments/forms.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-12-09 17:16:41 +0000
committerMatthew Lemon <y@yulqen.org>2024-12-09 17:16:41 +0000
commitb481069d9444cc0756bd9f6780e7700dcf4903f5 (patch)
tree5cba9e3d501f79747c8af22bd1b0fd7d783e7ded /alphabetlearning/payments/forms.py
parentd3dda8c0bd194c28cf11c189c150c00bdc3e8a83 (diff)
wip: moving home page to home app and implementing reCAPTCHA
Diffstat (limited to 'alphabetlearning/payments/forms.py')
-rw-r--r--alphabetlearning/payments/forms.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/alphabetlearning/payments/forms.py b/alphabetlearning/payments/forms.py
index 3aa2d95..68acfee 100644
--- a/alphabetlearning/payments/forms.py
+++ b/alphabetlearning/payments/forms.py
@@ -1,8 +1,13 @@
from django import forms
+from django_recaptcha.fields import ReCaptchaField
+from django_recaptcha.widgets import ReCaptchaV2Checkbox
+
from .models import EmailVerification
class EmailVerificationForm(forms.ModelForm):
+ captcha = ReCaptchaField(widget=ReCaptchaV2Checkbox)
+
class Meta:
model = EmailVerification
fields = ["email"]