migrate register
[platal.git] / templates / register / step2.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2006 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>Identification</h1>
24
25 <p>
26 <a href="{rel}/register?back=1">retour</a>
27 </p>
28
29 <form action="{rel}/register" method="post">
30   <table class="bicol" summary="Identification" cellpadding="3">
31     {if $smarty.session.sub_state.promo >= 1996}
32     <tr>
33       <th colspan="2">matricule</th>
34     </tr>
35     <tr>
36       <td class="titre">
37         Matricule X :
38       </td>
39       <td>
40         <input type="text" size="6" maxlength="6" name="mat" 
41           value="{$smarty.request.matricule|default:$smarty.session.sub_state.mat}" />
42       </td>
43     </tr>
44     <tr class="pair">
45       <td></td>
46       <td>
47         6 chiffres terminant par le numéro d'entrée (ex: 960532 ou 101532)<br />
48         Voir sur le GU ou un bulletin de solde pour trouver cette information<br /><br />
49         Pour les élèves étrangers voie 2, il est du type :<br />
50         Promotion: 1996, Matricule: 970XXX - Promotion: 2001, Matricule 102XXX.
51       </td>
52     </tr>
53     {/if}
54     <tr>
55       <th colspan="2">
56         Identification
57       </th>
58     </tr>
59     <tr>
60       <td class="titre"> 
61         Nom<br />
62         <span class="smaller">(Xettes mariées : nom à l'X)</span>
63       </td>
64       <td>
65         <input type="text" size="20" maxlength="30" name="nom" value="{$smarty.request.nom}" />
66       </td>
67     </tr>
68     <tr>
69       <td class="titre">
70         Prénom
71       </td>
72       <td>
73         <input type="text" size="15" maxlength="20" name="prenom" value="{$smarty.request.prenom}" />
74       </td>
75     </tr>
76     <tr>
77       <td class="titre">
78         Promotion
79       </td>
80       <td>
81         <input type="text" size="4" readonly="readonly" value="{$smarty.session.sub_state.promo}" />
82       </td>
83     </tr>
84     <tr>
85       <td colspan="2" class="center">
86         <input type="submit" value="Continuer l'inscription" />
87       </td>
88     </tr>
89   </table>
90 </form>
91
92 {* vim:set et sw=2 sts=2 sws=2: *}