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