Hello community, nice to greet everyone. I am a Canvas administrator and I am wanting to make a change to the login screen of the institution where I work. Specifically, I am looking for the label called "email" for "UCC Key", I was able to do it using JS with the following code:
document.addEventListener('DOMContentLoaded', function() {
var loginLabel = document.querySelector('label[for="pseudonym_session_unique_id"]');
if (loginLabel) {
loginLabel.textContent = 'UCC Key';
}
});
It only worked for the web version, but not for the mobile version.
I hope someone has a solution for this problem.
Many thanks in advance