Skip to content

Instantly share code, notes, and snippets.

@czj
Created August 10, 2011 08:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save czj/1136385 to your computer and use it in GitHub Desktop.
Save czj/1136385 to your computer and use it in GitHub Desktop.
Auto-login for Banque Populaire Ouest
var base_url = "https://www.secure3.banquepopulaire.fr/amserver/UI/Login?realm=ENTAO-ENV00030&goto=https%3A%2F%2Fwww.ibps.ouest.banquepopulaire.fr%3A443%2Fcyber%2Fibp%2Fate%2Fportal%2Finternet.html";
if (window.location != base_url)
{
window.location = base_url;
}
else
{
document.getElementById('IDToken1').value = "";
document.getElementById('IDToken2').value = "";
defaultSubmit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment