Skip to content

Instantly share code, notes, and snippets.

@felipe-ssilva
Last active November 18, 2023 20:08
Show Gist options
  • Save felipe-ssilva/6e8307f21d3af5d71f113b87b6de6f46 to your computer and use it in GitHub Desktop.
Save felipe-ssilva/6e8307f21d3af5d71f113b87b6de6f46 to your computer and use it in GitHub Desktop.
SMS Colombia Two Factor

Github Two-Factor Authentication (2FA) for Colombia via SMS

O GitHub não provê o código para enviar SMS para a Colombia (+57). Para adicionar essa opção ao select, rode o código abaixo no console do seu navegador:

var colombia = document.createElement('option');
colombia.value = '+57';
colombia.appendChild(document.createTextNode('Colombia +57'));
document.querySelectorAll('#countrycode').forEach((select) => select.appendChild(colombia));
@jeanbenitezu
Copy link

It appends the item but it doesn’t send the SMS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment