anyone kno of any good sources for coding username and login
Moderator: General Moderators
-
phpIsKillingMe
- Forum Newbie
- Posts: 5
- Joined: Wed Oct 22, 2003 7:02 pm
anyone kno of any good sources for coding username and login
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..
-
d3ad1ysp0rk
- Forum Donator
- Posts: 1661
- Joined: Mon Oct 20, 2003 8:31 pm
- Location: Maine, USA
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>you might find a tutorial that serves your needs at http://www.evilwalrus.com/search.php?ca ... arch=login