2003-02-07 09:00:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("db.inc");
|
|
|
|
include_once("util.inc");
|
|
|
|
include_once("prefs.inc");
|
|
|
|
|
|
|
|
$authenticator = init_session();
|
|
|
|
db_init();
|
|
|
|
|
|
|
|
$user = get_user_from_auth($authenticator);
|
|
|
|
if ($user == NULL) {
|
|
|
|
print_login_form();
|
|
|
|
exit();
|
|
|
|
}
|
2003-02-08 02:06:35 +00:00
|
|
|
page_head("Account setup: resource share", $user);
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
2003-02-18 23:07:48 +00:00
|
|
|
<h3>Account setup</h3>
|
2003-02-07 09:00:35 +00:00
|
|
|
";
|
|
|
|
$prefs = prefs_parse($user->project_prefs);
|
2003-02-18 23:07:48 +00:00
|
|
|
echo "<form action=account_setup_nonfirst_action.php>
|
|
|
|
<table cellpadding=6>
|
|
|
|
";
|
|
|
|
prefs_form_resource($prefs);
|
|
|
|
|
|
|
|
venue_form($user);
|
|
|
|
|
|
|
|
echo "<tr><td><br></td><td><input type=submit value=\"OK\"></td></tr>
|
|
|
|
</table>
|
|
|
|
</form>\n
|
|
|
|
";
|
|
|
|
|
2003-02-07 09:00:35 +00:00
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|