HTML Login Form (1 Viewer)

.Justin

Registered User.
Local time
Today, 07:09
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
 

tinyevil777

Registered User.
Local time
Today, 07:09
Joined
Dec 10, 2010
Messages
137
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

Banned
Local time
Yesterday, 23:09
Joined
Sep 5, 2011
Messages
7
<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.
 

frank00

New member
Local time
Yesterday, 23:09
Joined
Jan 16, 2013
Messages
3
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

Top Bottom