need a simple password submit button script

dirtbag

BANNED
Joined
Jul 24, 2008
Messages
990
Reaction score
534
just need a simple line of code that when the users enters a password and clicks the button he will be sent to a certain link. anyone? :)
 
This will get your basic button and return URL

But it sounds like you may want it to go to a specific site per specific password, in that case you'd need some PHP or java code to see what password was entered then upon that redirect accordingly...

Code:
<form action="http://www.website.com" method="get">
<input name="password" type="password">
<input type="submit" value="Submit">
</form>
 
nope, that looks like it should do, thanks.
 
Back
Top