I'm currently using a basic JavaScript password system to check usernames and passwords, this works in tandem with the main html log in system. (html forms can retain user information though IE - JavaScript does not).
The question is two fold:
1. is it possible to hide (******) passwords when typing in the promp box.
2. is it possible to combine the two fields into one alert box, rather like what you see in a NT Domain log-on.
Oh and 3. Is it possible to replace the "JavaScript Promt" dialogue printed in the prompt box.
This is the code I'm using at the moment for the promts:
Any sugestions on suitable code?
The question is two fold:
1. is it possible to hide (******) passwords when typing in the promp box.
2. is it possible to combine the two fields into one alert box, rather like what you see in a NT Domain log-on.
Oh and 3. Is it possible to replace the "JavaScript Promt" dialogue printed in the prompt box.
This is the code I'm using at the moment for the promts:
Code:
<SCRIPT LANGUAGE="Javascript"> <!-- var namePrompt = prompt("Please enter your username:",""); var PassPrompt = prompt("Now, please enter your password:",""); //--> </SCRIPT>
Comment