2019-09-09 23:48:52 +00:00
|
|
|
<?php
|
|
|
|
require_once "header.php";
|
|
|
|
|
|
|
|
if (isset($new_team) && !$has_error) { ?>
|
|
|
|
Votre équipe a bien été créée ! Voici le code d'accès à transmettre aux autres membres de votre équipe : <strong><?= $new_team->access_code ?></strong>
|
|
|
|
<?php } elseif ($_SESSION["team"] != NULL) { ?>
|
|
|
|
<h2>Vous êtes déjà dans une équipe.</h2>
|
2019-09-12 16:47:57 +00:00
|
|
|
<?php } elseif(date("Y-m-d H:i:s") >= $CONFIG->getInscriptionDate()) { ?>
|
|
|
|
<h2>La date limite d'inscription est dépassée.</h2>
|
2019-09-09 23:48:52 +00:00
|
|
|
<?php } else { ?>
|
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
<input type="hidden" name="submitted" value="true" />
|
|
|
|
<table style="width: 100%;">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 30%;">
|
|
|
|
<label for="name">Nom :</label>
|
|
|
|
</td>
|
|
|
|
<td style="width: 70%;">
|
|
|
|
<input style="width: 100%;" type="text" id="name" name="name" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<label for="trigram">Trigramme :</label>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input style="width: 100%;" type="text" id="trigram" name="trigram" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2019-09-10 23:17:05 +00:00
|
|
|
<label for="problem">Problème :</label>
|
2019-09-09 23:48:52 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2019-09-10 23:17:05 +00:00
|
|
|
<select style="width: 100%;" id="problem" name="problem">
|
2019-09-09 23:48:52 +00:00
|
|
|
<?php
|
2019-09-10 23:17:05 +00:00
|
|
|
for ($i = 1; $i <= 4; ++$i)
|
|
|
|
echo "<option value='$i'>$i</option>";
|
2019-09-09 23:48:52 +00:00
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
|
|
|
<input style="width: 100%;" type="submit" value="Ajouter une équipe" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php require_once "footer.php" ?>
|