I need to customize Sign Up page by adding new fields. For this I configured partials for a signup prompt via API request to PUT /api/v2/prompts/signup/partials with body: { “signup”: { “form-content-start”: “<div class="ulp-field"><label for="first-name">First Name<input type="text" name="ulp-first-name" id="first-name">” } }
Response status was 200 OK and also endpoint GET /api/v2/prompts/signup/partials returns my partial. But when I go to Sign Up page, my new field is not displayed there.
All Prerequisites are completed:
Universal Login is used
custom domain is configured
template for New Universal Login is added
option ‘Customize Login Page’ is disabled
I use /authorize endpoint to open Sign Up page (NOT database ‘Try’ button)
Why my new field is not displayed on Sign Up page?
P.S. I cannot use Forms as I need custom fields to be set right during registration (not afterwards)
Seems I just pasted body here incorrectly.
Response that is returned by GET /api/v2/prompts/signup/partials contains a valid JSON with valid HTML. So it’s not the issue