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: done", $user);
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
2003-02-08 02:06:35 +00:00
|
|
|
<h3>Account setup: done</h3>
|
2003-02-07 09:00:35 +00:00
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
Your account setup is complete.
|
|
|
|
<br>Next you must tell your computer(s) to use this account.
|
2003-02-07 09:00:35 +00:00
|
|
|
<ul>
|
|
|
|
<li><b>Windows users:</b>
|
|
|
|
Open the BOINC application window by
|
|
|
|
double-clicking the BOINC system tray icon.
|
2003-02-18 03:33:20 +00:00
|
|
|
Choose the 'Login to Project' item in the Settings menu.
|
2003-02-07 09:00:35 +00:00
|
|
|
It will ask you for a project URL and an account key.
|
|
|
|
<li><b>Macintosh users:</b>
|
2003-02-18 03:33:20 +00:00
|
|
|
Open the BOINC application window.
|
|
|
|
Choose the 'Login to Project' item in the Settings menu.
|
2003-02-07 09:00:35 +00:00
|
|
|
It will ask you for a project URL and an account key.
|
|
|
|
<li><b>Unix and Linux users:</b>
|
|
|
|
Quit the BOINC client.
|
|
|
|
Then run the BOINC client program with the -add_project option.
|
|
|
|
It will ask you for a project URL and an account key.
|
|
|
|
</ul>
|
|
|
|
In each case copy and paste the following:
|
|
|
|
<ul>
|
|
|
|
<li>Project URL: <b>".MASTER_URL."</b>
|
|
|
|
<li>Account key: $user->authenticator
|
|
|
|
</ul>
|
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
This completes the ".PROJECT." installation.
|
|
|
|
<br>Thanks for participating in ".PROJECT.".
|
|
|
|
<br>Visit our <a href=index.php>main page</a> for more information.
|
2003-02-07 09:00:35 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|