Hello,
is it possible to extract url variable and pass it into the description of a login page?
e.g.
new user got an e-mail with a link to a specific file:
http://localhost:4200/document/a27b8a6d-997b-4e59-8798-8a35125360bd?fileName=test.jpg
user is not registered yet, so redirection to a auth0 happens
and I want to have a “test.jpg” in description… is it possible?
Hi @lukas.selichar ,
Welcome to the Community!
Currently, the only way (that I know of) to customize the text in the New Universal Login is to use the Management API’s prompt endpoint: Customize New Universal Login Text Prompts
There are a few variables that you can pass:
Variable
Description
<%= ${clientName} %>
Auth0 Application Name
<%= YOUR_CONNECTION_NAME %>
Connection Name (e.g. Google)
<%= ${companyName} %>
Auth0 Tenant name
<%= ${userName} %>
Name of the logged user
<%= ${email} %>
Email of the logged user
<%= ${appName} %>
Name of the custom Guardian Push application
I believe you could do this by using the Classic Universal Login: Classic Universal Login Experience
Because the Classic UL is client-side, you can alter the template and JS to customize the experience.
1 Like
yeah, I was afraid that classic UL is the answer
thank you very much for answer
No problem! Yes, that is the case for now. You can also submit a feature request in our brand new Feedback category as well: Feedback - Auth0 Community
Thanks!
system
Closed
February 13, 2021, 12:42pm
6
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.