2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("db.inc");
|
|
|
|
include_once("util.inc");
|
|
|
|
include_once("team.inc");
|
|
|
|
|
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>
|
|
|
|
<li> access team members' email addresses.
|
2003-06-15 20:28:28 +00:00
|
|
|
<li> edit the team's name and description,
|
|
|
|
<li> remove members from the team, and
|
2003-03-21 04:38:55 +00:00
|
|
|
<li> disband a team if it has no members.
|
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
<form method=post action=team_lookup.php>
|
|
|
|
Search for a team whose name contains:
|
|
|
|
<input name=team_name>
|
|
|
|
<input type=submit name=search value=Search>
|
|
|
|
</form>
|
|
|
|
You may join a team on its team page.
|
|
|
|
<p>
|
|
|
|
<a href=top_teams.php>Show top teams</a>
|
|
|
|
<p>
|
|
|
|
<a href=team_create_form.php>Create a team</a>
|
|
|
|
<p>
|
|
|
|
";
|
2002-11-11 19:40:22 +00:00
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
?>
|