2003-02-07 09:00:35 +00:00
|
|
|
<?php
|
|
|
|
require_once("db.inc");
|
|
|
|
require_once("util.inc");
|
|
|
|
|
|
|
|
db_init();
|
|
|
|
|
2003-03-19 21:01:32 +00:00
|
|
|
$user = get_logged_in_user();
|
2003-02-07 09:00:35 +00:00
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
page_head("Account setup", $user);
|
2003-02-07 09:00:35 +00:00
|
|
|
echo "
|
2003-02-08 02:06:35 +00:00
|
|
|
<h3>Account setup</h3>
|
2003-02-07 09:00:35 +00:00
|
|
|
".PROJECT." uses the BOINC software system.
|
|
|
|
<br>BOINC lets you divide your computer time between several
|
|
|
|
distributed computing projects.
|
2003-02-08 02:06:35 +00:00
|
|
|
<br>Is this your first BOINC project?
|
|
|
|
<blockquote>
|
|
|
|
<a href=account_setup_first.php><b>This is my first BOINC project</b></a>
|
2003-02-07 09:00:35 +00:00
|
|
|
<p>
|
2003-02-08 02:06:35 +00:00
|
|
|
<a href=account_setup_nonfirst.php><b>I'm currently participating in another BOINC project</b></a>
|
2003-02-07 09:00:35 +00:00
|
|
|
|
2003-02-08 02:06:35 +00:00
|
|
|
</blockquote>
|
2003-02-07 09:00:35 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|