Merge branch 'xorg/maint' into xorg/master
[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">
f15d1307
SJ
74 <tr id="make_X">
75 <td colspan="2">
76 <span id="make_X_cb">
77 <input type="checkbox" name="is_x" id="is_x" onclick="$('#make_X_cb').hide(); $('#make_X_login').show()" />
8830a7fe 78 <label for="is_x">coche cette case si vous êtes en fait un X</label>
f15d1307
SJ
79 </span>
80 <span id="make_X_login" style="display: none">
81 <span class="titre">Identifiant (prenom.nom.promo)&nbsp;:</span>
82 <input type="text" name="login_X" value="" />
83 </span>
84 </td>
85 </tr>
86 </table>
87
88 <div class="center">
89 <br />
30439e34 90 <input type="submit" name='change' value="Valider ces changements" onclick="return hashResponse('password1', 'password2', true, false);" />
f15d1307
SJ
91 &nbsp;
92 <input type="reset" value="Annuler ces changements" />
93 </div>
94</form>
95
96{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}