2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
include_once("../inc/db.inc");
|
|
|
|
include_once("../inc/util.inc");
|
|
|
|
include_once("../inc/team.inc");
|
2002-08-07 18:56:55 +00:00
|
|
|
|
2003-03-19 21:01:32 +00:00
|
|
|
init_session();
|
2002-08-07 18:56:55 +00:00
|
|
|
db_init();
|
|
|
|
|
2002-11-11 19:40:22 +00:00
|
|
|
page_head("Teams");
|
|
|
|
|
2003-03-21 04:38:55 +00:00
|
|
|
echo "<p>".PROJECT." participants may form <b>teams</b>.
|
|
|
|
<p>
|
2003-06-15 20:28:28 +00:00
|
|
|
You may belong to only one team.
|
2003-03-21 04:38:55 +00:00
|
|
|
You can join or quit a team at any time.
|
|
|
|
<p>
|
|
|
|
Each team has a <b>founder</b>, who may
|
|
|
|
<ul>
|
2004-10-18 22:08:37 +00:00
|
|
|
<li> access team members' email addresses
|
|
|
|
<li> edit the team's name and description
|
|
|
|
<li> remove members from the team
|
|
|
|
<li> disband a team if it has no members
|
2003-03-21 04:38:55 +00:00
|
|
|
</ul>
|
|
|
|
<p>
|
2004-10-18 22:08:37 +00:00
|
|
|
To join a team, visit its team page and click Join.
|
|
|
|
<p>
|
|
|
|
Each team has a <a href=clone.php>Create team account URL</a>;
|
|
|
|
accounts created through this URL will belong to the team,
|
|
|
|
and will have the project preferences of its founder.
|
|
|
|
<hr>
|
|
|
|
<ul>
|
|
|
|
<li> <form method=get action=team_lookup.php>
|
2004-07-21 21:50:25 +00:00
|
|
|
Search for teams whose name start with:
|
2003-03-21 04:38:55 +00:00
|
|
|
<input name=team_name>
|
|
|
|
<input type=submit name=search value=Search>
|
|
|
|
</form>
|
2004-10-18 22:08:37 +00:00
|
|
|
<li> <a href=team_create_form.php>Create a team</a>
|
|
|
|
</ul>
|
2004-12-08 22:05:56 +00:00
|
|
|
Show top teams:
|
|
|
|
<ul>
|
|
|
|
<li> <a href=top_teams.php>All teams</a>
|
|
|
|
";
|
|
|
|
|
|
|
|
for ($i=1; $i<8; $i++) {
|
|
|
|
echo "<li> <a href=top_teams.php?type=$i>".team_type_name($i)." teams</a>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "
|
|
|
|
</ul>
|
2003-03-21 04:38:55 +00:00
|
|
|
";
|
2002-11-11 19:40:22 +00:00
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
?>
|