2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include_once("db.inc");
|
|
|
|
include_once("util.inc");
|
|
|
|
include_once("team.inc");
|
|
|
|
|
2002-12-04 19:14:00 +00:00
|
|
|
$authenticator = init_session();
|
2002-08-07 18:56:55 +00:00
|
|
|
db_init();
|
|
|
|
|
2002-11-11 19:40:22 +00:00
|
|
|
page_head("Teams");
|
|
|
|
?>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Participants in this project may form "teams" -
|
|
|
|
for example, students in a school, employees of a company, etc.
|
|
|
|
<ul>
|
|
|
|
<li> You may join a team at any time.
|
|
|
|
<li> You may quit your current team at any time.
|
|
|
|
<li> Only the team founder may edit a team's fields (name, description, etc.).
|
|
|
|
<li> The founder has the right to remove members from a team.
|
|
|
|
<li> The founder may disband a team if it has no members.
|
|
|
|
A team may not be disbanded if it still has members.
|
|
|
|
<li> The founder has access to all team members' email addresses.
|
|
|
|
</ul>
|
|
|
|
<p>
|
|
|
|
<a href=top_teams.php>Show top teams</a>
|
|
|
|
<p>
|
|
|
|
<a href=team_create_form.php>Create a new team</a>
|
|
|
|
<p>
|
|
|
|
To search for a team type in the team name below and hit the Search button.
|
|
|
|
You may join teams through these team pages.
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
?>
|