I’m trying to add a full name field to our Universal Login Signup. I’ve tried to follow the instructions in Configure Additional Signup Fields on the Universal Login Page but I’m getting stuck on the first step. The field doesn’t display on the login page dashboard > authentication database > database > try.
My test tenant seems to meet all the requirements.
custom domain - yes
custom page template - yes
Customize Login Page is disabled - yes
using email and password to signup and login - yes
I used the Auth0 Management API > Prompts > Set partials for a prompt > signup. Body code below:
{
“signup”: {
“form-content-start”: “
Full Name
”
}
}
And got back a 200 response.
But only the email and password fields are displaying on the login page dashboard > authentication database > database > try.
Thanks Rueben. I’m using forms for post login flow but I need to collect additional user info during pre-registration which doesn’t support forms.
Turns out that my problem was that I was testing with the dashboard > authentication > database > try feature instead of trying to login an actual application in my tenant (I was using a developer environment that didn’t have an application that I could test with). Once I tried logging in to my application from a browser I was able to see the new custom field.