Hi @Sean Jolly ,
Thanks for reaching out.
I tried to addAs a workaround, you can create a label and add Text to it.
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<script>
var label = document.createElement('label');
label.appendChild(document.createTextNode('Welcome to the Login page @'));
document.body.appendChild(label);
</script>
</head>
<body>
<div id="api"></div>
</body>
</html>
which shows javacSript label on your customized page.
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.