diff options
Diffstat (limited to 'alphabetlearning/payments/forms.py')
-rw-r--r-- | alphabetlearning/payments/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alphabetlearning/payments/forms.py b/alphabetlearning/payments/forms.py index 68acfee..bfa23ac 100644 --- a/alphabetlearning/payments/forms.py +++ b/alphabetlearning/payments/forms.py @@ -1,12 +1,12 @@ from django import forms from django_recaptcha.fields import ReCaptchaField -from django_recaptcha.widgets import ReCaptchaV2Checkbox +from django_recaptcha.widgets import ReCaptchaV3 from .models import EmailVerification class EmailVerificationForm(forms.ModelForm): - captcha = ReCaptchaField(widget=ReCaptchaV2Checkbox) + captcha = ReCaptchaField(widget=ReCaptchaV3()) class Meta: model = EmailVerification |