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
|
|
|
|
2004-11-21 18:56:30 +00:00
|
|
|
db_init();
|
|
|
|
$user = get_logged_in_user();
|
|
|
|
$teamid = $_GET["id"];
|
2002-11-11 19:40:22 +00:00
|
|
|
|
2004-11-21 18:56:30 +00:00
|
|
|
$team = lookup_team($teamid);
|
2002-11-11 19:40:22 +00:00
|
|
|
$team_name = $team->name;
|
|
|
|
page_head("Join $team_name");
|
2004-10-16 04:12:11 +00:00
|
|
|
echo " <p><b>Please note:</b>
|
2003-03-21 04:38:55 +00:00
|
|
|
<ul>
|
|
|
|
<li> Joining a team gives its founder access to your email address.
|
2004-01-26 19:29:39 +00:00
|
|
|
<li> Joining a team does not affect your account's credit.
|
2003-03-21 04:38:55 +00:00
|
|
|
</ul>
|
|
|
|
<hr>
|
|
|
|
<form method=post action=team_join_action.php>
|
2004-11-21 18:56:30 +00:00
|
|
|
<input type=hidden name=teamid value=$teamid>
|
2003-03-21 04:38:55 +00:00
|
|
|
<input type=submit value='Join team'>
|
|
|
|
</form>
|
|
|
|
";
|
2002-11-11 19:40:22 +00:00
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
?>
|