Update of /cvsroot/openfirst/members
In directory sc8-pr-cvs1:/tmp/cvs-serv2747
Modified Files:
index.php
Log Message:
Add more functionality to main members page.
Index: index.php
===================================================================
RCS file: /cvsroot/openfirst/members/index.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** index.php 28 Jun 2003 03:01:25 -0000 1.5
--- index.php 23 Jul 2003 21:37:06 -0000 1.6
***************
*** 33,42 ****
<h1>Members Area</h1>
- <p>This is the openFIRST members area. You are logged in as:
<?php
! echo($user->user . " the " . $user->membertype . ".");
?></p>
<?php } else {
showlogin();
}
! include($footer); ?>
\ No newline at end of file
--- 33,49 ----
<h1>Members Area</h1>
<?php
! if(isset($user->email) == false || $user->email == "") {
! echo("<p><strong>You have not <a href='updateprofile.php'>updated your e-mail address</a>.
! Important team announcements will be delivered to you via e-mail, and if you do not have
! an up to date e-mail address listed in your profile you will miss out on these.</strong></p>");
! }
! ?>
! <p>This is the <?php echo $title; ?> members area. You are logged in as:
! <?php
! echo("$user->user the $user->membertype of the $user->division division of team $user->team.");
?></p>
<?php } else {
showlogin();
}
! include($footer); ?>
|