Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removing custom signup #672

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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