1 <h2>Informations du compte</h2>
3 <form name="user_form" action="<?php echo $this->url("users/infos/edit"); ?>" method="post">
6 <label for="login">login</label>
7 <input type="text" name="login" id="login" value="<?php echo $this->out["user"]["login"]; ?>" disabled="disabled" />
10 <label for="status_name">statut</label>
11 <input type="text" name="status_name" id="status_name" value="<?php echo $this->out["status"][$this->out["user"]["status"]]["nom"]; ?>" disabled="disabled" />
14 <label for="email">email</label>
15 <input type="text" name="email" id="email" value="<?php echo $this->out["user"]["email"]; ?>" />
18 <label for="change_password">changer le mot de passe</label>
19 <input type="checkbox" name="change_password" id="change_password" <?php echo isset($_POST["change_password"]) && $_POST["change_password"] ? "checked=\"checked\"" : ""; ?>/>
22 <label for="password">mot de passe</label>
23 <input type="password" name="password" id="password" />
26 <label for="password_confirm">confirmer le mot de passe</label>
27 <input type="password" name="password_confirm" id="password_confirm" />
30 <input type="submit" value="Enregistrer" />