Fixes link to Xnet account edition.
[platal.git] / templates / xnet / edit.tpl
CommitLineData
f15d1307
SJ
1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2010 Polytechnique.org *}
4{* http://opensource.polytechnique.org/ *}
5{* *}
6{* This program is free software; you can redistribute it and/or modify *}
7{* it under the terms of the GNU General Public License as published by *}
8{* the Free Software Foundation; either version 2 of the License, or *}
9{* (at your option) any later version. *}
10{* *}
11{* This program is distributed in the hope that it will be useful, *}
12{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
13{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
14{* GNU General Public License for more details. *}
15{* *}
16{* You should have received a copy of the GNU General Public License *}
17{* along with this program; if not, write to the Free Software *}
18{* Foundation, Inc., *}
19{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
20{* *}
21{**************************************************************************}
22
23<h1>
24 Édition de tes données dans l'annuaire
25</h1>
26
27<form method="post" action="{$platal->ns}edit">
28 {xsrf_token_field}
29 <table cellpadding="0" cellspacing="0" class='tinybicol'>
30 <tr id="prenom" class="impair">
31 <td class="titre">
32 Nom affiché&nbsp;:
33 </td>
34 <td>
35 <input type="text" value="{$user->displayName()}" name="display_name" size="40" />
36 </td>
37 </tr>
38 <tr class="impair">
39 <td class="titre">
40 Nom complet&nbsp;:
41 </td>
42 <td>
43 <input type="text" value="{$user->fullName()}" name="full_name" size="40" />
44 </td>
45 </tr>
46 <tr class="impair">
47 <td class="titre">
48 Nom annuaire&nbsp;:
49 </td>
50 <td>
51 <input type="text" value="{$user->directoryName()}" name="directory_name" size="40" />
52 </td>
53 </tr>
54 <tr id="sexe" class="impair">
55 <td class="titre">
56 Sexe&nbsp;:
57 </td>
58 <td>
59 <select name="sex">
60 <option value="male"{if !$user->isFemale()} selected="selected"{/if}>Homme</option>
61 <option value="female"{if $user->isFemale()} selected="selected"{/if}>Femme</option>
62 </select>
63 </td>
64 </tr>
65 <tr class="impair">
66 <td class="titre">
67 Email&nbsp;:
68 </td>
69 <td>
70 <input type="text" value="{$user->forlifeEmail()}" name="email" size="40" />
71 </td>
72 </tr>
73 <tr class="impair">
74 <td class="titre">Mot de passe&nbsp;:</td>
75 <td>
76 <input type="text" name="password1" size="10" maxlength="256" value="********" />
77 <input type="hidden" name="pwhash" value="" />
78 </td>
79 </tr>
80 <tr class="impair">
81 <td class="titre">Retape-le une fois&nbsp;:</td>
82 <td>
83 <input type="text" name="password2" size="10" maxlength="256" value="" />
84 </td>
85 </tr>
86 <tr>
87 <td></td>
88 <td>{checkpasswd prompt="password1" submit="dummy_none"}</td>
89 </tr>
90 <tr id="make_X">
91 <td colspan="2">
92 <span id="make_X_cb">
93 <input type="checkbox" name="is_x" id="is_x" onclick="$('#make_X_cb').hide(); $('#make_X_login').show()" />
94 <label for="is_x">coche cette case si tu es en fait un X</label>
95 </span>
96 <span id="make_X_login" style="display: none">
97 <span class="titre">Identifiant (prenom.nom.promo)&nbsp;:</span>
98 <input type="text" name="login_X" value="" />
99 </span>
100 </td>
101 </tr>
102 </table>
9a7f3d8e
SJ
103 {if $user->groupCount() eq 0}
104 <p>
105 Supprimer mon compte&nbsp;:&nbsp;<input type="text" name="delete" value="NON" size="3" maxlength="3" /><br />
106 <small>(Écrire « OUI » en majuscule pour que la suppression soit prise en compte.)</small>
107 </p>
108 {/if}
f15d1307
SJ
109
110 <div class="center">
111 <br />
30439e34 112 <input type="submit" name='change' value="Valider ces changements" onclick="return hashResponse('password1', 'password2', true, false);" />
f15d1307
SJ
113 &nbsp;
114 <input type="reset" value="Annuler ces changements" />
115 </div>
116</form>
117
118{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}