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.system.login.title" /></title> |
||
11 | </head> |
||
12 | |||
13 | <body> |
||
14 | |||
15 | <h1><bean:message key="ak.webcontrol.page.system.login.title" /></h1> |
||
16 | |||
17 | <html:errors/> |
||
18 | |||
19 | <html:form action="/system/login/submit" focus="username"> |
||
20 | <backpath:current /> |
||
21 | <table border="0"> |
||
22 | <tr> |
||
23 | <th class="right"> |
||
24 | <bean:message key="ak.webcontrol.page.system.login.login" /> |
||
25 | </th> |
||
26 | <td class="left"> |
||
27 | <html:text property="login" size="16"/> |
||
28 | </td> |
||
29 | </tr> |
||
30 | <tr> |
||
31 | <th class="right"> |
||
32 | <bean:message key="ak.webcontrol.page.system.login.password" /> |
||
33 | </th> |
||
34 | <td class="left"> |
||
35 | <html:password property="password" size="16" redisplay="false" /> |
||
36 | </td> |
||
37 | </tr> |
||
38 | <tr> |
||
39 | <td class="right"> |
||
40 | <html:submit> |
||
41 | <bean:message key="ak.webcontrol.page.system.login.submit" /> |
||
42 | </html:submit> |
||
43 | </td> |
||
44 | <td class="right"> |
||
45 | <html:reset> |
||
46 | <bean:message key="ak.webcontrol.page.system.login.reset" /> |
||
47 | </html:reset> |
||
48 | </td> |
||
49 | </tr> |
||
50 | </table> |
||
51 | </html:form> |
||
52 | |||
53 | </body> |
||
54 | |||
55 | </html> |