3
0

renamed google login to sign in
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Mike Sutton 2024-02-26 20:59:47 +01:00
parent 2cacee7ce7
commit 7827ab4b36

View File

@ -17,5 +17,15 @@ const swapLinkedIn = () => {
// Change the text of the span
span.textContent = 'Sign in with LinkedIn';
}
const renameGoogle = () => {
var anchor = document.getElementById('social-google');
if (!anchor) return;
// Get the span element
var span = anchor.getElementsByClassName('kc-social-provider-name')[0];
// Change the text of the span
span.textContent = 'Sign in with Google';
}
swapLinkedIn()
renameGoogle()