Hi @brettgoulder,
Thanks for joining the Community!
Are you wanting to collect additional data from the user when they sign up?
Unfortunately, adding additional fields to the New Universal Login experience is currently a limitation:
https://auth0.com/docs/universal-login/new-experience/new-experience-limitations?_ga=2.235465158.674888892.1610366706-1595415333.1607347674
However, if you go to Universal Login in your dashboard and select Classic Login Experience, you can define custom sign up fields. To do this, go to the “Login” tab and toggle on “Customize Login Page” and add additionalSignUpFields parameter to the lock settings.
additionalSignUpFields: [{
name: "address",
placeholder: "enter your address",
// The following properties are optional
icon: "https://example.com/assests/address_icon.png",
prefill: "street 123",
validator: function(address) {
return {
valid: address.length >= 10,
hint: "Must have 10 or more chars" // optional
};
}
}, {
name: "full_name",
placeholder: "Enter your full name"
}
]
https://auth0.com/docs/libraries/lock/lock-configuration#additionalsignupfields-array-