Regarding my previous question, which I think it wasnt a good question, although I got some responses. I still am trying to figure this out, I read so many pages online but none of them was to help full. what I want to happen is I have made a form, like the following:
<form id="login" name= "myForm" method="post" action="" onsubmit="return validateForm()">
<fieldset id="inputs">
<input name="uname" id="username" type="text" placeholder="Username" >
<input name="pass" id="password" type="password" placeholder="Password" >
</fieldset>
<fieldset id="actions">
<input type="submit" value="submit" onClick="Login(this.form);">
</fieldset>
what I want to happen is when a user comes to this page, that person is able to create a new account (sign up) by entering the information needed which in this case is only a userID and a password. and lets say he is signing up for google or yahoo o another host. how Can I do that, using the given information. If some one can tell me how I can use the same information (userID and pass) to log in to the website (the account is already exist), that would be also very nice because then I can go on on my own.