HTML Login Form

.Justin

Registered User.
Local time
Today, 20:00
Joined
Jun 29, 2009
Messages
38
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
 
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.
 
<form name="login" method="post" action="login.php">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td>USER ID </td>
<td><input name="username" type="text" id="username" maxlength="15"></td>
</tr>
<tr>
<td>PASSWORD </td>
<td><input name="password" type="password" id="password" maxlength="10"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </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.
 
yeah sure it's very easy to do this thing.. If you know development than just create an easy session for doing this work..
 

Users who are viewing this thread

Back
Top Bottom