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