2002-08-12 20:16:55 +00:00
|
|
|
<?php
|
|
|
|
require_once("util.inc");
|
|
|
|
require_once("db.inc");
|
2002-08-14 00:27:18 +00:00
|
|
|
|
2002-09-05 22:19:23 +00:00
|
|
|
db_init();
|
2002-08-12 20:16:55 +00:00
|
|
|
$user = get_user_from_cookie();
|
2002-08-14 00:27:18 +00:00
|
|
|
printf(
|
|
|
|
"<head>\n"
|
2002-11-09 20:26:50 +00:00
|
|
|
."<title>".PROJECT."</title>\n"
|
2002-08-14 00:27:18 +00:00
|
|
|
."</head>\n"
|
|
|
|
."<body text=#000000 link=#0000cc vlink=#551a8b alink=#ff0000>\n"
|
|
|
|
."<table width=780>\n"
|
2002-11-09 20:26:50 +00:00
|
|
|
."<tr><td><h1 align=center>".PROJECT."</h1></td></tr>\n"
|
2002-08-14 00:27:18 +00:00
|
|
|
);
|
2002-08-12 20:16:55 +00:00
|
|
|
if ($user) {
|
2002-08-14 00:27:18 +00:00
|
|
|
echo "<tr><td><h3>Welcome $user->name</h3>\n";
|
2002-08-12 20:16:55 +00:00
|
|
|
echo "If you are not $user->name or would wish to log in as another user ";
|
2002-08-12 21:24:45 +00:00
|
|
|
echo "<a href=login.php>login here</a>.";
|
2002-09-05 22:19:23 +00:00
|
|
|
} else {
|
|
|
|
echo "<tr><td>\n";
|
2002-08-12 20:16:55 +00:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<p>
|
2002-11-08 17:21:45 +00:00
|
|
|
This distributed computing project is running on the BOINC software platform.
|
|
|
|
BOINC is a software platform for public-participation distributed
|
|
|
|
computing projects.
|
|
|
|
Users are allowed to simultaneously participate in multiple projects
|
|
|
|
and to choose how to allocate their resources for each project.
|
2002-08-12 20:16:55 +00:00
|
|
|
|
2002-11-08 17:21:45 +00:00
|
|
|
<h3>Joining this project</h3>
|
|
|
|
First, <a href=create_account.php>create an account</a>.
|
|
|
|
You will be sent an authenticator
|
|
|
|
to the email specified.
|
|
|
|
After successfully creating an account,
|
|
|
|
<a href=download.php>download the BOINC client</a>.
|
|
|
|
Install and run the client.
|
|
|
|
When it asks you for authenticator,
|
|
|
|
cut and paste the authenticator from the email.
|
2002-08-12 20:16:55 +00:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li><a href=create_account.php>Create account</a></li>
|
|
|
|
<li><a href=download.php>Download core client</a></li>
|
2002-08-12 21:24:45 +00:00
|
|
|
<li><a href=login.php>Login</a></li>
|
2002-08-12 20:16:55 +00:00
|
|
|
<li><a href=home.php>User home page</a></li> - view stats, modify preferences
|
2002-08-12 21:24:45 +00:00
|
|
|
<li><a href=team.php>Teams</a></li> - join sample distributed computing project community
|
2002-08-12 20:16:55 +00:00
|
|
|
</ul>
|
2002-08-14 00:27:18 +00:00
|
|
|
</td></tr></table>
|
2002-08-12 20:16:55 +00:00
|
|
|
</body>
|