Hey @james.merrigan,
I am currently using Liquid page templates, but my question is:
Am I able override widget screen prompt text on an app-by-app basis?
Widget screen prompt text, meaning, for example:
{
"pageTitle": "Enter your password to log in | ${clientName}",
"title": "Enter Your Password",
"description": "Enter your password for ${companyName} to continue to ${clientName}",
"separatorText": "Or",
"buttonText": "Continue",
"federatedConnectionButtonText": "Continue with ${connectionName}",
"footerLinkText": "Sign up",
"signupActionLinkText": "${footerLinkText}",
"footerText": "Don't have an account?",
"signupActionText": "${footerText}",
"forgotPasswordText": "Forgot password?",
"passwordPlaceholder": "Password",
"editEmailText": "Edit",
"editLinkScreenReadableText": "Edit email address",
"alertListTitle": "Alerts",
"invitationTitle": "You've Been Invited!",
"invitationDescription": "Log in to accept ${inviterName}'s invitation to join ${companyName} on ${clientName}.",
"logoAltText": "${companyName}",
"useBiometricsText": "Use Fingerprint or Face Recognition",
"showPasswordText": "Show password",
"hidePasswordText": "Hide password",
"wrong-credentials": "Wrong username or password",
"invalid-email-format": "Email is not valid.",
"wrong-email-credentials": "Wrong email or password",
"custom-script-error-code": "Something went wrong, please try again later.",
"auth0-users-validation": "Something went wrong, please try again later",
"authentication-failure": "We are sorry, something went wrong when attempting to login",
"invalid-connection": "Invalid connection",
"ip-blocked": "We have detected suspicious login behavior and further attempts will be blocked. Please contact the administrator.",
"no-db-connection": "Invalid connection",
"password-breached": "We have detected a potential security issue with this account. To protect your account, we have prevented this login. Please reset your password to proceed.",
"user-blocked": "Your account has been blocked after multiple consecutive login attempts.",
"same-user-login": "Too many login attempts for this user. Please wait, and try again later.",
"no-email": "Please enter an email address",
"no-password": "Password is required",
"no-username": "Username is required"
}
Like I said, I tried to override in the Liquid template itself using {% assign prompt.screen.login.title = "Hello World!" %}
, but seems to result in a 500 error.