1 |
<%-- |
2 |
Copyright 2008-2009 Hippo |
3 |
|
4 |
Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
you may not use this file except in compliance with the License. |
6 |
You may obtain a copy of the License at |
7 |
|
8 |
http://www.apache.org/licenses/LICENSE-2.0 |
9 |
|
10 |
Unless required by applicable law or agreed to in writing, software |
11 |
distributed under the License is distributed on an "AS IS" |
12 |
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 |
See the License for the specific language governing permissions and |
14 |
limitations under the License. --%> |
15 |
<%@ page language="java"%> |
16 |
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> |
17 |
<%@ taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> |
18 |
<%@ taglib uri="http://www.hippoecm.org/jsp/hst/core" prefix='hst'%> |
19 |
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> |
20 |
<div> |
21 |
<h2>Login page</h2> |
22 |
<form method="post" action="<c:url value="/login/proxy"/>"> |
23 |
<table> |
24 |
<tr> |
25 |
<td>Login</td> |
26 |
<td><input type="text" name="j_username"/></td> |
27 |
</tr> |
28 |
<tr> |
29 |
<td>Password</td> |
30 |
<td><input type="password" name="j_password"/></td> |
31 |
</tr> |
32 |
<tr> |
33 |
<td colspan="2" ><input type="submit" value="login"/></td> |
34 |
</tr> |
35 |
</table> |
36 |
</form> |
37 |
</div> |
38 |
|