[phpMP-CVS] CVS: phpMP/modules user_side.php,1.9,1.10
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2002-08-10 20:41:36
|
Update of /cvsroot/phpmp/phpMP/modules In directory usw-pr-cvs1:/tmp/cvs-serv26894/modules Modified Files: user_side.php Log Message: Added a very primitive registration process. Needs a LOT of enhancing. Index: user_side.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/modules/user_side.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** user_side.php 27 Jul 2002 05:35:59 -0000 1.9 --- user_side.php 10 Aug 2002 20:41:33 -0000 1.10 *************** *** 7,11 **** $blockname = "Welcome\n"; ! $content .= "<font size='1'>Welcome back,<br> " . $MPCONF['USR']['username'] . "!</font><br />\n"; $content .= "<br />\n"; $content .= "<font size='1'><a href='" . $MPCONF['GEN']['uri'] . "/members/profile.php?action=edit'>Edit User Profile</a></font><br />\n"; --- 7,11 ---- $blockname = "Welcome\n"; ! $content .= "<font size='1'>Welcome, " . $MPCONF['USR']['username'] . "!</font><br />\n"; $content .= "<br />\n"; $content .= "<font size='1'><a href='" . $MPCONF['GEN']['uri'] . "/members/profile.php?action=edit'>Edit User Profile</a></font><br />\n"; *************** *** 43,47 **** $content .= " </tr>\n"; $content .= " <tr>\n"; ! $content .= " <td><font size='1'><a href='" . $MPCONF['GEN']['uri'] . "/register.php'>Register A Username</a></font></td>\n"; $content .= " </tr>\n"; $content .= "</table>\n"; --- 43,47 ---- $content .= " </tr>\n"; $content .= " <tr>\n"; ! $content .= " <td><font size='1'><a href='" . $MPCONF['GEN']['uri'] . "/profile.php?mode=register'>Register A Username</a></font></td>\n"; $content .= " </tr>\n"; $content .= "</table>\n"; |