5 |
aurelien |
1 |
<h2>Modification d'un administrateur</h2>
|
|
|
2 |
<form id="modif_admin" action="<?=$base_url.'?m=modif_admin_va&id_admin='.$admin['ga_id_administrateur']
|
|
|
3 |
?>" method="post">
|
|
|
4 |
<fieldset><label for="admin_nom">Nom : </label> <input
|
|
|
5 |
type="text" id="admin_nom" name="admin_nom" maxlength="80" tabindex="1"
|
|
|
6 |
value="<?=$admin['ga_nom'] ?>" /> <label for="admin_prenom">Prénom
|
|
|
7 |
: </label> <input type="text" id="admin_prenom" name="admin_prenom"
|
|
|
8 |
maxlength="80" tabindex="2" value="<?=$admin['ga_prenom'] ?>"
|
|
|
9 |
/> <label for="admin_mail">Mail : </label> <input type="text"
|
|
|
10 |
id="admin_mail" name="admin_mail" maxlength="120" tabindex="3" value="<?=$admin['ga_mail']
|
|
|
11 |
?>" /> <?php if (isset($erreurs['mail'])): ?> <span
|
|
|
12 |
class="symbole_obligatoire"> <?=$erreurs['mail'] ?> </span> <?php endif; ?>
|
|
|
13 |
<label for="admin_lang">Langue : </label> <select id="admin_lang"
|
|
|
14 |
name="admin_lang" tabindex="4">
|
|
|
15 |
<option<?=($admin['ga_ce_i18n'] == "fr-FR") ?
|
|
|
16 |
'selected="selected"' : '';?> value="fr-FR"> Français</option>
|
|
|
17 |
<option<?=($admin['ga_ce_i18n'] == "en-EN") ?
|
|
|
18 |
'selected="selected"' : '';?> value="en-EN"> Anglais</option>
|
|
|
19 |
</select> <label for="password">Mot de passe : </label> <input type="password"
|
|
|
20 |
id="admin_pass" name="admin_pass" maxlength="80" tabindex="5" value="<?=''
|
|
|
21 |
?>" /> <label for="password_confirm">Confirmez le mot de passe :
|
|
|
22 |
</label> <input type="password" id="admin_pass_confirm"
|
|
|
23 |
name="admin_pass_confirm" maxlength="80" tabindex="6" value="<?=''
|
|
|
24 |
?>" /> <?php if (isset($erreurs['pass'])): ?> <span
|
|
|
25 |
class="symbole_obligatoire"> <?=$erreurs['pass'] ?> </span> <?php endif; ?>
|
|
|
26 |
</fieldset>
|
|
|
27 |
<input type="submit" id="valider_modif_admin" name="valider_modif_admin"
|
|
|
28 |
tabindex="7" value="Modifier" /> <a href="<?=$base_url.'?m=liste_admin'
|
|
|
29 |
?>"> annuler </a></form>
|