Add mailing list headers to newsletters
[platal.git] / templates / xnet / edit.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2013 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 class="impair">
31       <td class="titre">Nom complet&nbsp;:</td>
32       <td>{$user->fullName()}</td>
33     </tr>
34     <tr class="impair">
35       <td class="titre">Nom annuaire&nbsp;:</td>
36       <td>{$user->directoryName()}</td>
37     <tr class="impair">
38       <td class="titre">Nom&nbsp;:</td>
39       <td>
40         <input type="text" value="{$user->lastname}" name="lastname" size="40" />
41       </td>
42     </tr>
43     <tr class="impair">
44       <td class="titre">Prénom&nbsp;:</td>
45       <td>
46         <input type="text" value="{$user->firstname}" name="firstname" size="40" />
47       </td>
48     </tr>
49     <tr id="prenom" class="impair">
50       <td class="titre">
51         Nom affiché&nbsp;:
52       </td>
53       <td>
54         <input type="text" value="{$user->displayName()}" name="display_name" size="40" />
55       </td>
56     </tr>
57     <tr id="sexe" class="impair">
58       <td class="titre">
59         Sexe&nbsp;:
60       </td>
61       <td>
62         <select name="sex">
63           <option value="male"{if !$user->isFemale()} selected="selected"{/if}>Homme</option>
64           <option value="female"{if $user->isFemale()} selected="selected"{/if}>Femme</option>
65         </select>
66       </td>
67     </tr>
68     <tr class="impair">
69       <td class="titre">
70         Email&nbsp;:
71       </td>
72       <td>
73         <input type="text" value="{$user->forlifeEmail()}" name="email" size="40" />
74       </td>
75     </tr>
76     <tr class="impair">
77     <tr id="make_X">
78       <td colspan="2">
79         <span id="make_X_cb">
80           <input type="checkbox" name="is_x" id="is_x" onclick="$('#make_X_cb').hide(); $('#make_X_login').show()" />
81           <label for="is_x">cochez cette case si vous êtes en fait un X ou un master ou doctorant de l'X</label>
82         </span>
83         <span id="make_X_login" style="display: none">
84           <span class="titre">Identifiant (prenom.nom.promo)&nbsp;:</span>
85           <input type="text" name="login_X" value="" />
86         </span>
87       </td>
88     </tr>
89   </table>
90
91   <div class="center">
92     <br />
93     <input type="submit" name='change' value="Valider ces changements" onclick="return hashResponse('password1', 'password2', true, false);" />
94     &nbsp;
95     <input type="reset" value="Annuler ces changements" />
96   </div>
97 </form>
98
99 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}