natterjacks
Verified User
- Joined
- Apr 26, 2006
- Messages
- 17
I've been busy working on this today and figured that others may benefit from what I've done.
I've written some php using l0rdphi1's php class (nice one btw!!) to log in an email user and allow them to set their own vacation message.
It's still a work in progress and needs the modification / delete sections added, but you'll get the jist.
I hope this helps!!
The HTML Logon Form:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Verify Users Email Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body><center><br><br>
<form action="login.php" method="post">
<table width="70%" border="0">
<tr>
<td width="21%">Full Email Address:</td>
<td width="54%"><input name="email" type="text" size="64" maxlength="64"></td>
<td width="25%">(e.g. [email protected]) </td>
</tr>
<tr>
<td>Password: </td>
<td><input type="password" name="passwd"></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><input name="submit" type="submit" value="Login"></td>
<td> </td>
</tr>
</table>
</form>
</center>
</body>
</html>
I've written some php using l0rdphi1's php class (nice one btw!!) to log in an email user and allow them to set their own vacation message.
It's still a work in progress and needs the modification / delete sections added, but you'll get the jist.
I hope this helps!!
The HTML Logon Form:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Verify Users Email Login</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body><center><br><br>
<form action="login.php" method="post">
<table width="70%" border="0">
<tr>
<td width="21%">Full Email Address:</td>
<td width="54%"><input name="email" type="text" size="64" maxlength="64"></td>
<td width="25%">(e.g. [email protected]) </td>
</tr>
<tr>
<td>Password: </td>
<td><input type="password" name="passwd"></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><input name="submit" type="submit" value="Login"></td>
<td> </td>
</tr>
</table>
</form>
</center>
</body>
</html>