2019-09-12 14:19:47 +00:00
|
|
|
<?php
|
|
|
|
require_once "header.php";
|
|
|
|
|
2019-09-24 21:18:32 +00:00
|
|
|
if (isset($admin) && !$has_error) { ?>
|
|
|
|
<div class="alert alert-success">
|
|
|
|
Organisateur ajouté avec succès ! Ses identifiants ont été transmis par mail.
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2019-09-12 14:19:47 +00:00
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
<table style="width: 100%;">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 30%;">
|
|
|
|
<label for="surname">Nom :</label>
|
|
|
|
</td>
|
|
|
|
<td style="width: 70%;">
|
|
|
|
<input style="width: 100%;" type="text" id="surname" name="surname"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<label for="first_name">Prénom :</label>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input style="width: 100%;" type="text" id="first_name" name="first_name"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<label for="email">Email :</label>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input style="width: 100%;" type="email" id="email" name="email"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2">
|
2019-09-24 21:18:32 +00:00
|
|
|
<input style="width: 100%;" type="submit" name="add_admin" value="Ajouter un administrateur"/>
|
2019-09-12 14:19:47 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<?php require_once "footer.php" ?>
|