1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-06-25 02:20:29 +02:00

Desgn "Mon compte" & mini-corrections

This commit is contained in:
galaxyoyo
2019-09-24 23:44:38 +02:00
parent b6434cafb8
commit 90952ecb7c
13 changed files with 158 additions and 125 deletions

View File

@ -10,14 +10,14 @@ if (isset($new_team) && !$has_error) { ?>
<?php } else { ?>
<form method="POST">
<table style="width: 100%;">
<table >
<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" />
<input type="text" id="name" name="name" />
</td>
</tr>
<tr>
@ -25,7 +25,7 @@ if (isset($new_team) && !$has_error) { ?>
<label for="trigram">Trigramme :</label>
</td>
<td>
<input style="width: 100%;" type="text" id="trigram" name="trigram" />
<input type="text" id="trigram" name="trigram" />
</td>
</tr>
<tr>
@ -33,7 +33,7 @@ if (isset($new_team) && !$has_error) { ?>
<label for="problem">Problème :</label>
</td>
<td>
<select style="width: 100%;" id="problem" name="problem">
<select id="problem" name="problem">
<?php
for ($i = 1; $i <= 4; ++$i)
echo "<option value='$i'>$i</option>";
@ -49,7 +49,7 @@ if (isset($new_team) && !$has_error) { ?>
</tr>
<tr>
<td colspan="2">
<input style="width: 100%;" type="submit" name="add_team" value="Ajouter une équipe" />
<input type="submit" name="add_team" value="Ajouter une équipe" />
</td>
</tr>
</tbody>