Page 1 of 1

anyone kno of any good sources for coding username and login

Posted: Wed Oct 22, 2003 7:02 pm
by phpIsKillingMe
hi im new to this programming thing..can someone tell me a good source to get ideas on how to create forms for a user to type in their username and password..like what you'd see in a login gui. thanks..

Posted: Wed Oct 22, 2003 7:38 pm
by d3ad1ysp0rk

Code: Select all

<form action="page.php" method="post" name="form1">
<table>
<tr>
<td>Username: </td>
<td><input type="text" name="usr" size="15"></td>
</tr>
<tr>
<td>Password: </td>
<td><input type="password" name="pwd" size="15"></td>
</tr>
<tr>
<td colspan="2" width="100%"><input type="submit" name="submit" value="Login"></td>
</form>
That's the code to make the form. Not the actual script.

Posted: Wed Oct 22, 2003 7:45 pm
by volka
you might find a tutorial that serves your needs at http://www.evilwalrus.com/search.php?ca ... arch=login

Posted: Fri Oct 24, 2003 12:26 am
by phpIsKillingMe
thanks