Prototype per-request global (thread local) object
[java-idp.git] / webApplication / login.jsp
1 <?xml version="1.0" encoding="utf-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
5         <head>
6                 <style type="text/css" title="styled">
7                         @import url('login.css');
8                 </style>
9
10                 <title>Example Organization WebLogin</title>
11         </head>
12         <body>   
13                 <div id="page">
14                         <div id="head">
15                                 <h1>Example Organization</h1>
16                         </div>
17
18                         <div id="main">
19                                 <div id="content">
20                                         <p> 
21                                         Please login:
22                                         </p>
23                                         <form method="post" action="j_security_check">
24                                                 <table class="login">
25                                                         <tr class="login">
26                                                                 <td class="login"><strong>UID</strong></td>
27                                                                 <td class="login"><input name="j_username" type="text" id="j_username" size="16" /></td></tr>
28                                                         <tr class="login">
29                                                                 <td class="login">
30                                                                         <strong>Password</strong>
31                                                                 </td>
32
33                                                                 <td class="login">
34                                                                         <input name="j_password" type= "password" id="j_password" size= "16" /></td>
35                                                                 <td class="login">
36                                                                         <input name="Login" type="submit" id="Login" value="Login" />
37                                                                 </td>
38                                                         </tr>
39                                                 </table>
40                                         </form>
41
42                                 </div>
43                                 <div id="helptext">
44                                         <p>
45                                         The resource that you have attempted to access requires that you log in with your with your Example Organization UID.
46                                         </p>
47                                 </div>
48
49                         </div>
50                 </div>
51         </body>
52 </html>