-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmember_profile.php
25 lines (17 loc) · 1.02 KB
/
member_profile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
include_once("includes/inc.global.php");
$p->site_section = PROFILE;
$p->page_title = _("Member Profile");
$cUser->MustBeLoggedOn();
$list .= "<A HREF=password_change.php><FONT SIZE=2>"._("Change My Password")."</FONT></A><BR>";
$list .= "<A HREF=member_edit.php?mode=self><FONT SIZE=2>"._("Edit My Personal Information")."</FONT></A><BR>";
if (ALLOW_IMAGES==true)
$list .= "<A HREF=member_photo_upload.php?mode=self><FONT SIZE=2>"._("Upload/Change Photo of Myself")."</FONT></A><BR>";
$list .= "<A HREF=member_contact_create.php?mode=self><FONT SIZE=2>"._("Add a Joint Member to My Account")."</FONT></A><BR>";
$list .= "<A HREF=member_contact_choose.php><FONT SIZE=2>"._("Edit/Delete a Joint Member")."</FONT></A><P>";
if (ALLOW_INCOME_SHARES==true)
$list .= "<A HREF=income_ties.php><FONT SIZE=2>"._("Manage Income Shares")."</FONT></A><p>";
/*[chris]*/
$list .= "<a href=member_summary.php?member_id=".$cUser->member_id."><font size=2>"._("View My Profile (as others see it)")."</font></a><p>";
$p->DisplayPage($list);
?>