Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
949 | 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 | <%@ taglib uri="/WEB-INF/hostadmiral-core.tld" prefix="core" %> |
||
7 | <html> |
||
8 | |||
9 | <head> |
||
10 | <meta http-equiv="expires" content="0"> |
||
11 | <title><bean:message key="ak.hostadmiral.page.user.failedLogins.title" /></title> |
||
12 | </head> |
||
13 | |||
14 | <body> |
||
15 | |||
16 | <h1><bean:message key="ak.hostadmiral.page.user.failedLogins.title" /></h1> |
||
17 | |||
18 | <html:errors/> |
||
19 | |||
20 | <table border=1> |
||
21 | <tr> |
||
22 | <th><bean:message key="ak.hostadmiral.page.user.failedLogins.login" /></th> |
||
23 | <th><bean:message key="ak.hostadmiral.page.user.failedLogins.user.exists" /></th> |
||
24 | <th><bean:message key="ak.hostadmiral.page.user.failedLogins.time" /></th> |
||
25 | <th><bean:message key="ak.hostadmiral.page.user.failedLogins.success" /></th> |
||
26 | <th><bean:message key="ak.hostadmiral.page.user.failedLogins.ip" /></th> |
||
27 | </tr> |
||
28 | |||
29 | <logic:iterate name="logins" id="l"> |
||
30 | <tr> |
||
31 | <td><bean:write name="l" property="login" /></td> |
||
32 | <td> |
||
33 | <logic:present name="l" property="user">x</logic:present> |
||
34 | <logic:notPresent name="l" property="user"> </logic:notPresent> |
||
35 | </td> |
||
36 | <td><bean:write name="l" property="loginTime" /></td> |
||
37 | <td> |
||
38 | <logic:equal name="l" property="success" value="true">x</logic:equal> |
||
39 | <logic:notEqual name="l" property="success" value="true"> </logic:notEqual> |
||
40 | </td> |
||
41 | <td><bean:write name="l" property="ip" /></td> |
||
42 | </tr> |
||
43 | </logic:iterate> |
||
44 | </table> |
||
45 | |||
46 | <br> |
||
47 | <backpath:backlink><bean:message key="ak.hostadmiral.page.user.failedLogins.back" /></backpath:backlink> |
||
48 | |||
49 | </body> |
||
50 | |||
51 | </html> |