2002-04-30 22:22:54 +00:00
|
|
|
<?php
|
|
|
|
|
2005-10-12 22:51:55 +00:00
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/user.inc");
|
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/forum.inc");
|
2002-11-08 17:21:45 +00:00
|
|
|
|
2005-10-12 22:51:55 +00:00
|
|
|
// show the home page of whoever's logged in
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$user = getForumPreferences($user);
|
|
|
|
page_head("Your account");
|
|
|
|
|
|
|
|
if (get_str("new_acct", true)) {
|
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
Welcome to ".PROJECT.".
|
|
|
|
View and edit your account preferences using the links below.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
if (get_str("via_web", true)) {
|
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
If you have not already done so,
|
|
|
|
<a href=http://boinc.berkeley.edu/download.php>download BOINC client software</a>.
|
|
|
|
";
|
|
|
|
}
|
|
|
|
echo "<p>\n";
|
|
|
|
|
|
|
|
show_user_page_private($user);
|
|
|
|
project_user_page_private($user);
|
|
|
|
|
|
|
|
page_tail();
|
2005-03-04 10:09:25 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
?>
|