Update of /cvsroot/openfirst/base/config
In directory sc8-pr-cvs1:/tmp/cvs-serv29278
Modified Files:
auth.php
Log Message:
Added forgot password to reset features.
Index: auth.php
===================================================================
RCS file: /cvsroot/openfirst/base/config/auth.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** auth.php 22 Dec 2003 22:25:14 -0000 1.13
--- auth.php 23 Dec 2003 15:37:24 -0000 1.14
***************
*** 56,59 ****
--- 56,60 ----
function showlogin () {
+
// Show a login form for the user.
echo("<br><br><form action='". $_SERVER["PHP_SELF"] . "' method='post'>");
***************
*** 61,65 ****
echo("<input name='referer' type='hidden' value='".$_SERVER["HTTP_REFERER"]."'/>");
}
! echo("<table width='27%'>
<tr>
<th width='36%'> </th>
--- 62,66 ----
echo("<input name='referer' type='hidden' value='".$_SERVER["HTTP_REFERER"]."'/>");
}
! echo "<table width='200'>
<tr>
<th width='36%'> </th>
***************
*** 77,85 ****
<tr>
<td> </td>
! <td><input type='submit' value='Login'>");
if(!isset($GLOBALS["pass_save_disabled"])){
! echo(" <input type=checkbox name=savepass id=savepass value=1 checked><label for=savepass>Save Password</label>");
}
echo("</td></tr>
</table>
</form><br><br>");
--- 78,87 ----
<tr>
<td> </td>
! <td><input type='submit' value='Login'>";
if(!isset($GLOBALS["pass_save_disabled"])){
! echo " <br><input type=checkbox name=savepass id=savepass value=1 checked><label for=savepass>Save Password</label>";
}
echo("</td></tr>
+ <tr><td> </td><td><a href='/members/forgotten.php'>Forgot Password</a></td></tr>
</table>
</form><br><br>");
|