Skip to content

Commit

Permalink
Remove registration reCAPTCHA (#1103)
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie authored Jul 31, 2024
1 parent 81f14f1 commit 8d1da36
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions accounts/forms.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from django import forms
from django_recaptcha.fields import ReCaptchaField
from django_registration.forms import RegistrationForm
from accounts.models import User

Expand All @@ -10,8 +9,6 @@ class CustomUserForm(RegistrationForm):
first_name = forms.CharField(max_length=30, required=True)
last_name = forms.CharField(max_length=30, required=True)

captcha = ReCaptchaField()

class Meta(RegistrationForm.Meta):
model = User
fields = [
Expand Down

0 comments on commit 8d1da36

Please sign in to comment.