2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/team.inc");
|
2002-11-11 19:40:22 +00:00
|
|
|
|
2005-02-19 08:06:53 +00:00
|
|
|
db_init();
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$teamid = get_int("id");
|
2002-11-11 19:40:22 +00:00
|
|
|
|
2005-02-19 08:06:53 +00:00
|
|
|
$team = lookup_team($teamid);
|
|
|
|
$team_name = $team->name;
|
|
|
|
page_head("Join $team_name");
|
|
|
|
echo " <p><b>Please note:</b>
|
|
|
|
<ul>
|
|
|
|
<li> Joining a team gives its founder access to your email address.
|
|
|
|
<li> Joining a team does not affect your account's credit.
|
|
|
|
</ul>
|
|
|
|
<hr>
|
|
|
|
<form method=post action=team_join_action.php>
|
|
|
|
<input type=hidden name=teamid value=$teamid>
|
|
|
|
<input type=submit value='Join team'>
|
|
|
|
</form>
|
|
|
|
";
|
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
?>
|