Skip to content

Instantly share code, notes, and snippets.

@166MMX
Created December 13, 2017 22:36
Show Gist options
  • Save 166MMX/94bb78490390a62ffd62f7f8305b79e4 to your computer and use it in GitHub Desktop.
Save 166MMX/94bb78490390a62ffd62f7f8305b79e4 to your computer and use it in GitHub Desktop.
var s = "";
s += 'Your client number is:';
s += document.getElementById('clientnumber').value;
s += '; Your user name is:';
s += document.getElementById('username').value;
s += 'Your password is: ';
s += document.getElementById('password').value;
alert(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment