whole bunch of changes :
[banana.git] / install.d / profile_form.inc.php
CommitLineData
c87d7e96 1<?php
2/********************************************************************************
3* install.d/profile_form.inc.php : HTML form
4* --------------------------------
5*
6* This file is part of the banana distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9?>
c87d7e96 10<div class="title">
11 <?php echo $locale['profile']['title'];?>
12</div>
13
14<form action="<?php echo $_SERVER['REQUEST_URI']?>" method="POST">
15 <table class="bicol" cellpadding="2" cellspacing="0"
16 summary="Profile">
17 <tr class="pair">
18 <th colspan="2">
19 <?php echo $locale['profile']['define'];?>
20 </th>
21 </tr>
22 <tr class="impair">
23 <td>
24 <?php echo $locale['profile']['name'];?>
25 </td>
26 <td>
27 <input type="text" name="profile_name" value="">
28 </td>
29 </tr>
30 <tr class="pair">
31 <td>
32 <?php echo $locale['profile']['mail'];?>
33 </td>
34 <td>
35 <input type="text" name="profile_mail" value="">
36 </td>
37 </tr>
38 <tr class="impair">
39 <td>
40 <?php echo $locale['profile']['organization'];?>
41 </td>
42 <td>
43 <input type="text" name="profile_org" value="">
44 </td>
45 </tr>
46 <tr class="pair">
47 <td>
48 <?php echo $locale['profile']['signature'];?>
49 </td>
50 <td>
4b6400bc 51 <textarea name="profile_sig" rows="7" cols="50"></textarea>
c87d7e96 52 </td>
53 </tr>
54 <tr class="pair">
55 <th colspan="2">
56 <?php echo $locale['profile']['display'];?>
57 </th>
58 </tr>
59 <tr class="impair">
60 <td colspan="2">
61 <input type="radio" name="displaytype" value="0" checked>
62 <?php echo $locale['profile']['all'];?>
63 </td>
64 </tr>
65 <tr class="pair">
66 <td colspan="2">
67 <input type="radio" name="displaytype" value="1">
68 <?php echo $locale['profile']['new'];?>
69 </td>
70 </tr>
71 <tr class="pair">
72 <th colspan="2">
73 <?php echo $locale['profile']['auth'];?>
74 </th>
75 </tr>
76 <tr class="impair">
77 <td>
78 <?php echo $locale['profile']['login'];?>
79 </td>
80 <td>
81 <input type="text" name="profile_login" value="anonymous">
82 </td>
83 </tr>
84 <tr class="pair">
85 <td>
86 <?php echo $locale['profile']['passwd'];?>
87 </td>
88 <td>
89 <input type="password" name="profile_passwd" value="">
90 </td>
91 </tr>
92 <tr class="impair">
93 <td colspan="2" class="bouton">
94 <input type="submit" name="action" value="OK">
95 </td>
96 </tr>
97 </table>
98</form>