Skip to content

Instantly share code, notes, and snippets.

@Slackwise
Created January 2, 2015 15:56
Show Gist options
  • Save Slackwise/a863affc516b2c80390d to your computer and use it in GitHub Desktop.
Save Slackwise/a863affc516b2c80390d to your computer and use it in GitHub Desktop.
This is from the login page for our Ricoh copier. (I wish I were joking.)
function encrypt() {
document.form1.userid.value = base64encode(document.form1.userid_work.value);
document.form1.password.value = base64encode(document.form1.password_work.value);
document.form1.userid_work.value = "";
document.form1.password_work.value = "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment