flaskdev
10/08/2023, 10:14 AM...
signInAndUpFeature: {
providers: [Google.init(), Github.init()],
signUpForm: {
formFields: [
{
id: "first_name",
label: "First name",
placeholder: "First name"
},
{
id: "last_name",
label: "Last name",
placeholder: "Last name"
}
]
}
...
Backend (Here, I haven't added anything related to the "override_apis" function (3rd step). Is this necessary, or is adding the fields as shown sufficient?):
...
thirdpartyemailpassword.init(
sign_up_feature=thirdpartyemailpassword.InputSignUpFeature(
form_fields=[
InputFormField(id="first_name"),
InputFormField(id="last_name"),
]
),
...
I also wanted to ask if it's possible to change the order of the fields in the sign-up form. I haven't found any information about this anywhere.
Thank you in advance.