aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/manage/changepassword.html
blob: 977c772083c82565e5a40485bfc0532accfbe84f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?py include('templates/base_top.html') ?>
<?py include('templates/manage/menu.html') ?>
<center>
<div class="replymode">Cambiar contraseña</div>
<form action="#{cgi_url}manage/changepassword" method="post">
<table>
 <tr>
   <td class="postblock">Clave actual</td>
   <td><input type="password" name="oldpassword" style="width:100%;" /></td>
 </tr>
 <tr>
   <td class="postblock">Nueva clave</td>
   <td><input type="password" name="newpassword" style="width:100%;" /></td>
 </tr>
 <tr>
   <td class="postblock">Confirmar nueva clave</td>
   <td><input type="password" name="newpassword2" style="width:100%;" /></td>
 </tr>
 <tr><td colspan="2"><input type="submit" style="width:100%;" value="Cambiar" /></td></tr>
</table>
</form>
</center>
<hr />
<?py include('templates/base_bottom.html') ?>