Skip to content

Commit

Permalink
Merge branch 'feature/remove-custom-signup' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
gone committed Dec 17, 2024
2 parents 7a65786 + fd74314 commit 9a02930
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 82 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import.meta.glob("@/../templates/components/**/*.js", { eager: true });
import.meta.glob("@/../templates/components/**/*.ts", { eager: true });

// account
import.meta.glob("@/../templates/account/**/*.js", { eager: true });
import.meta.glob("@/../templates/account/**/*.ts", { eager: true });

// forms
import.meta.glob("@/../templates/forms/**/*.js", { eager: true });
import.meta.glob("@/../templates/forms/**/*.ts", { eager: true });

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ class LoginForm(AllAuthLoginForm):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)

class SignupForm(AllAuthSignupForm):
template_name = "account/signup_form.jinja"

class SignupForm(AllAuthSignupForm):
first_name = forms.CharField(
label=_("First Name"),
min_length=1,
Expand Down

0 comments on commit 9a02930

Please sign in to comment.