34 lines
896 B
PHP
34 lines
896 B
PHP
<?php
|
|
require_once "header.php" ;
|
|
|
|
if (isset($join_team) && !$has_error) { ?>
|
|
Vous avez bien rejoint l'équipe <?= $_SESSION["team"]->getName() ?> !
|
|
<?php } elseif(date("Y-m-d H:i:s") >= $CONFIG->getInscriptionDate()) { ?>
|
|
<h2>La date limite d'inscription est dépassée.</h2>
|
|
<?php } else { ?>
|
|
|
|
<?php if ($has_error) echo "<h2>Erreur : " . $error_message . "</h2>"; ?>
|
|
|
|
<form method="POST">
|
|
<table style="width: 100%;">
|
|
<tbody>
|
|
<tr>
|
|
<td style="width: 30%;">
|
|
<label for="access_code">Code d'accès :</label>
|
|
</td>
|
|
<td style="width: 70%;">
|
|
<input style="width: 100%;" type="text" id="access_code" name="access_code" />
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input style="width: 100%;" name="join_team" type="submit" value="Rejoindre l'équipe" />
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
|
|
<?php } ?>
|
|
|
|
<?php require_once "footer.php" ?>
|