View Full Version : HTML Login Form


.Justin,
01-20-2011, 10:49 AM
Hi All,

I am just creating a web space for a local youth group. Only about 30 people with just basic information and links to downloads for letters that have been sent and a calender on the site.

What I would like is a simple HTML code for a login page for the leaders to be able to download resources that the youth members don't need to see. So something simple like a generic login which then redirects to a page. Can this be done at all?


Thanks

tinyevil777
02-08-2011, 04:28 AM
I used to use a little tool called HTML lock, it encrypts your web page you can assign user login credentials through a .csv or .xls file. Pretty handy.

If you want it, let me know and i'll dig it out for you.

jack9
09-05-2011, 02:32 AM
<form name="login" method="post" action="login.php">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td>USER ID&nbsp;</td>
<td><input name="username" type="text" id="username" maxlength="15"></td>
</tr>
<tr>
<td>PASSWORD&nbsp;</td>
<td><input name="password" type="password" id="password" maxlength="10"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
<td><strong>
<input name="Login" type="submit" value="Login">
<input name="Reset" type="reset" value="Reset">
</strong></td>
</tr>
</table>
</form>


I hope this can help.