renamed google login to sign in
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
2cacee7ce7
commit
7827ab4b36
@ -17,5 +17,15 @@ const swapLinkedIn = () => {
|
|||||||
// Change the text of the span
|
// Change the text of the span
|
||||||
span.textContent = 'Sign in with LinkedIn';
|
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()
|
swapLinkedIn()
|
||||||
|
renameGoogle()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user