2002-08-07 18:56:55 +00:00
|
|
|
<?php
|
2007-08-24 15:41:01 +00:00
|
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
2002-08-07 18:56:55 +00:00
|
|
|
|
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>
|
2007-08-24 15:41:01 +00:00
|
|
|
<form method=\"post\" action=\"team_join_action.php\">";
|
|
|
|
echo form_tokens($user->authenticator);
|
|
|
|
echo "
|
|
|
|
<input type=\"hidden\" name=\"teamid\" value=\"$teamid\">
|
|
|
|
<input type=\"submit\" value=\"Join team\">
|
2005-02-19 08:06:53 +00:00
|
|
|
</form>
|
|
|
|
";
|
|
|
|
page_tail();
|
2002-08-07 18:56:55 +00:00
|
|
|
|
|
|
|
?>
|