Last change
on this file since 1453 was 1252, checked in by Solomon Blaz, 13 years ago |
removed cruft related to KAAJEE, stubbed in spring-security/VistALink authentication implementation
|
File size:
2.7 KB
|
Line | |
---|
1 | <%@ page language="java" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %>
|
---|
2 | <%@ include file="/WEB-INF/jsp/taglibs.jsp" %>
|
---|
3 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
---|
4 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
---|
5 | <html>
|
---|
6 | <head>
|
---|
7 | <title><fmt:message key="login.title"/></title>
|
---|
8 | <link rel="shortcut icon" href="<c:url value="/favicon.ico"/>" type="image/x-icon"/>
|
---|
9 | <style type="text/css">
|
---|
10 | body {
|
---|
11 |
|
---|
12 | }
|
---|
13 |
|
---|
14 | form {
|
---|
15 | width: 620px;
|
---|
16 | height: 374px;
|
---|
17 | margin: 0 auto;
|
---|
18 | margin-top: 10em;
|
---|
19 | }
|
---|
20 |
|
---|
21 | table {
|
---|
22 | margin-top: 180px;
|
---|
23 | margin-left: 40px;
|
---|
24 | width: 100%;
|
---|
25 | }
|
---|
26 |
|
---|
27 | label {
|
---|
28 | display: block;
|
---|
29 | text-align: right;
|
---|
30 | }
|
---|
31 |
|
---|
32 | </style>
|
---|
33 | </head>
|
---|
34 | <body>
|
---|
35 | <form method="post" id="loginForm" action="<c:url value='j_spring_security_check'/>">
|
---|
36 | <table>
|
---|
37 | <c:if test="${param.error != null}">
|
---|
38 | <tr class="error">
|
---|
39 | <td colspan="2">
|
---|
40 | <fmt:message key="errors.verify.mismatch"/>
|
---|
41 | <c:out value="${requestScope.SPRING_SECURITY_LAST_EXCEPTION.message}"/>
|
---|
42 | </td>
|
---|
43 | </tr>
|
---|
44 | </c:if>
|
---|
45 | <tr>
|
---|
46 | <td>
|
---|
47 | <label for="j_stationNumber">
|
---|
48 | <fmt:message key="label.facility"/>
|
---|
49 | </label>
|
---|
50 | </td>
|
---|
51 | <td>
|
---|
52 | <select id="j_stationNumber" name="j_stationNumber" tabindex="3">
|
---|
53 | <c:forEach items="${vistaAccounts}" var="account">
|
---|
54 | <option value="<c:out value="${account.primaryStation}"/>"><c:out value="${account.name}"/>
|
---|
55 | (<c:out value="${account.primaryStation}"/>)
|
---|
56 | </option>
|
---|
57 | </c:forEach>
|
---|
58 | </select>
|
---|
59 | </td>
|
---|
60 | </tr>
|
---|
61 | <tr>
|
---|
62 | <td>
|
---|
63 | <label for="j_access">
|
---|
64 | <fmt:message key="label.access"/>
|
---|
65 | </label>
|
---|
66 | </td>
|
---|
67 | <td>
|
---|
68 | <input type="password" name="j_access" id="j_access" tabindex="1"/>
|
---|
69 | </td>
|
---|
70 | </tr>
|
---|
71 |
|
---|
72 | <tr>
|
---|
73 | <td>
|
---|
74 | <label for="j_verify">
|
---|
75 | <fmt:message key="label.verify"/>
|
---|
76 | </label>
|
---|
77 | </td>
|
---|
78 | <td>
|
---|
79 | <input type="password" name="j_verify" id="j_verify" tabindex="2"/>
|
---|
80 | </td>
|
---|
81 | </tr>
|
---|
82 |
|
---|
83 | <tr>
|
---|
84 | <td/>
|
---|
85 | <td>
|
---|
86 | <input type="submit" name="login" value="<fmt:message key='button.login'/>"
|
---|
87 | tabindex="4"/>
|
---|
88 | </td>
|
---|
89 | </tr>
|
---|
90 | </table>
|
---|
91 | </form>
|
---|
92 | </body>
|
---|
93 | </html>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.