Jesse 0 Report post Posted November 23, 2005 Hi, I have this HTML Code in my website. At the moment when someone inputs a username and password (no matter who they are) it just directs them to: http://forums.xisto.com/no_longer_exists/ ... What I want to do is have it so that the Members can Access a Password Protected Folder. And instead of having Windows prompting for the username and password they just type it into a box on the main page. <TBODY> <TR> <TD align=right height=25>Username:</TD></TR> <TR> <TD align=right height=25>Password:</TD></TR> <TR> <TD align=right> </TD></TR></TBODY></TABLE></TD> <TD> <FORM name=form1 action=http://forums.xisto.com/no_longer_exists/ method=get target=_self> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD align=middle><INPUT id=username maxLength=10 size=10 name=username> </TD></TR> <TR> <TD align=middle><INPUT id=password type=password maxLength=10 size=10 name=password></TD></TR> <TR> <TD align=middle><INPUT type=submit value=Submit name=Submit> </TD></TR></TBODY></TABLE></FORM></TD></TR></TBODY></TABLE></TD></TR> Thanking you in advance for your help. Share this post Link to post Share on other sites
rvalkass 5 Report post Posted November 23, 2005 You have set the action as http://forums.xisto.com/no_longer_exists/. When the user pushes the Submit button it will take them to the page listed in the action. This is your homepage, which doesn't appear to do anything with the information given. You need to set the action to a script to do something with the information submitted. Share this post Link to post Share on other sites