Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
899 | dev | 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> |
2 | <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> |
||
3 | <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %> |
||
4 | <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> |
||
5 | <%@ taglib uri="/WEB-INF/ak-backpath.tld" prefix="backpath" %> |
||
6 | <html> |
||
7 | |||
8 | <head> |
||
9 | <meta http-equiv="expires" content="0"> |
||
10 | <title><bean:message key="ak.webcontrol.page.user.password.change.title" /></title> |
||
11 | </head> |
||
12 | |||
13 | <body> |
||
14 | |||
15 | <h1><bean:message key="ak.webcontrol.page.user.password.change.title" /></h1> |
||
16 | |||
17 | <html:errors/> |
||
18 | |||
19 | <html:form action="/user/password/submit" focus="oldpassword"> |
||
20 | <backpath:current/> |
||
21 | |||
22 | <table border="0"> |
||
23 | <tr> |
||
24 | <th class="right"> |
||
25 | <bean:message key="ak.webcontrol.page.user.password.change.old_password" /> |
||
26 | </th> |
||
27 | <td class="left"> |
||
28 | <html:password property="oldpassword" size="16" redisplay="false" /> |
||
29 | </td> |
||
30 | </tr> |
||
31 | <tr> |
||
32 | <th class="right"> |
||
33 | <bean:message key="ak.webcontrol.page.user.password.change.new_password" /> |
||
34 | </th> |
||
35 | <td class="left"> |
||
36 | <html:password property="password" size="16" redisplay="false" /> |
||
37 | </td> |
||
38 | </tr> |
||
39 | <tr> |
||
40 | <th class="right"> |
||
41 | <bean:message key="ak.webcontrol.page.user.password.change.new_password_again" /> |
||
42 | </th> |
||
43 | <td class="left"> |
||
44 | <html:password property="password2" size="16" redisplay="false" /> |
||
45 | </td> |
||
46 | </tr> |
||
47 | <tr> |
||
48 | <td class="right"> |
||
49 | <html:submit> |
||
50 | <bean:message key="ak.webcontrol.page.user.password.change.submit" /> |
||
51 | </html:submit> |
||
52 | </td> |
||
53 | <td class="right"> |
||
54 | <backpath:backlink><bean:message key="ak.webcontrol.page.user.password.change.cancel" /></backpath:backlink> |
||
55 | </td> |
||
56 | </tr> |
||
57 | </table> |
||
58 | </html:form> |
||
59 | |||
60 | </body> |
||
61 | |||
62 | </html> |