12 lines
366 B
JavaScript
12 lines
366 B
JavaScript
const privacyPolicy = document.getElementById('privacy-policy');
|
|
const signupPage = document.querySelector("#kc-register-form");
|
|
|
|
if (privacyPolicy) {
|
|
privacyPolicy.innerHTML = '<span>This is a authentication for an app under test, you can use fake emails here, we do not store them</a></span>'
|
|
}
|
|
|
|
if (signupPage){
|
|
document.title = 'Sign Up to test the app'
|
|
}
|
|
|