Hello,

I am trying to create login form

however I want to make it when the user clicks the login button I want what ever the user types in as the username and password to appear in the URL.

For Example:
Login page = login.htm
username = username
password = password

and I want it to look like this in the URL address:
login.htm?user=username&pass=password

I have done the following code so far:

Code:
<form action="login.htm" method=POST>

Username <input type=text name=user size="20"><br />
Password <input type=password name=pass size="20">
<input type=submit value="Login"><p>
</form>
and now im stack, I don't know how to put the username and password in the url as well.

can anyone help me out?

Thanks