Is there a way to customize auth0 form document title
We know that we are able to customize the auth0 form document title by setting document.title = …;. Either in the html component or custom component
Overview
This article explains how to configure the browser tab title per Auth0 Form.
Applies To
Forms for Actions
Solution
To implement this modification in the Browser Title Tab, place a Custom HTML Block inside each Step where a Title modification is desired, and inside the Custom HTML Block in Source Code use the following code, and instead “Test” a custom title for the Form Step.
<script>
document.title = 'Test';
</script>
[rtaImage (66) copy]
The result should look like:
[rtaImag…
However, doing so for a split second a user would see the default page title “Form | Client name”
Hi @jamesjstar
Welcome back to the Auth0 Community!
The behaviour that you have described regarding the Forms title appears to be intended. I have tested it out on my end as well and I was able to replicate the issue that you are stating. I believe this would be caused by the delay of the website rendering the Form steps within.
If you have any other questions, let me know!
Kind Regards,
Nik