mirror of https://github.com/BOINC/boinc.git
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
include_once("../inc/db.inc");
|
|
include_once("../inc/util.inc");
|
|
include_once("../inc/prefs.inc");
|
|
|
|
db_init();
|
|
$user = get_logged_in_user();
|
|
|
|
page_head("Account setup: done");
|
|
echo "
|
|
<h3>Account setup: done</h3>
|
|
|
|
Your account setup is complete.
|
|
<br>Next you must tell your computer(s) to use this account.
|
|
<ul>
|
|
<li><b>Windows users:</b>
|
|
Open the BOINC application window by
|
|
double-clicking the BOINC system tray icon.
|
|
Choose the 'Login to Project' item in the Settings menu.
|
|
It will ask you for a project URL and an account ID.
|
|
<li><b>Mac, 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 ID.
|
|
</ul>
|
|
In each case copy and paste the following:
|
|
<ul>
|
|
<li>Project URL: <b>".MASTER_URL."</b>
|
|
<li>Account ID: $user->authenticator
|
|
</ul>
|
|
|
|
This completes the ".PROJECT." installation.
|
|
<br>Thanks for participating in ".PROJECT.".
|
|
<br>Visit our <a href=index.php>main page</a> for more information.
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|