I have a password input box and i want to make it so when they type in a password say such as "show" it would go to another page. i want a basic solution and i dont need it encrypted.
Password input box
Collapse
X
-
Assuming this "password box" is part of a form, you simply put the page you want to go to in the "action" value.
<form action="yourpag e.html">
<p>
<input type="password" > -
That's where programming comes in. You need either client side authentication using javascript or server side authentication with any number of programming languages. Server side, of course, is more secure.Comment
-
-
i am using html.
this is the page with the password box.Comment
-
Go look at my post in the javascript section.Originally posted by codeexComment
-
Also, HTML is not a server side scripting language. HTML and Javascript can be seen by the client (anyone who surf's to your page). A server side language is PHP, ASP etc....Originally posted by codeexi am using html.
this is the page with the password box.
HTH,
AricComment
-
i got a password script you might like, it is EXTREMELY versitaile (sp?), and i will be more than happy to send it to you. It works like a charm, however, its not encrypted or anything, its just an external *.js file. PM me if you want it. =]
Sincerely,
EragonComment
Comment