We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d2fb9 commit 9b5dca0Copy full SHA for 9b5dca0
1 file changed
centeredUi/paginatedOnload.js
@@ -701,7 +701,7 @@ function ShowPasswordPage()
701
702
if ( idBanner )
703
{
704
- idBanner.innerHTML = usernameInput.value;
+ idBanner.innerText = usernameInput.value;
705
}
706
707
// Create the ID Banner if we need to
@@ -711,7 +711,7 @@ function ShowPasswordPage()
711
var idBanner = document.createElement("div");
712
idBanner.id = "identityBanner";
713
idBanner.className = "identityBanner";
714
715
716
// Add the newly-created element
717
workArea.insertBefore(idBanner, workArea.firstChild);
0 commit comments