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: graphics", $user);
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
2003-02-08 02:06:35 +00:00
|
|
|
<h3>Account setup: graphics</h3>
|
2003-02-07 09:00:35 +00:00
|
|
|
<br>
|
|
|
|
".PROJECT." lets you control the following properties of its graphics.
|
|
|
|
";
|
|
|
|
$prefs = null;
|
|
|
|
prefs_form_project($prefs, "account_setup_first_download.php");
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|