source: branches/TaskRewrite/src/grails-app/views/login/auth.gsp @ 59

Last change on this file since 59 was 59, checked in by gav, 15 years ago

Lots of changes to setup Acegi, should be complete with all current pages secured.
Added CSS and PersonGroup? and PersonGroupType?.
Adjust BootStrap? to suite.
Add Home and Admin pages.

File size: 2.0 KB
Line 
1<head>
2<meta name='layout' content='main' />
3<title>Login</title>
4<style type='text/css' media='screen'>
5#login {
6        margin:15px 0px; padding:0px;
7        text-align:center;
8}
9#login .inner {
10        width:260px;
11        margin:0px auto;
12        text-align:left;
13        padding:10px;
14/*      border-top:1px dashed #499ede;
15        border-bottom:1px dashed #499ede;*/
16/*      background-color:#EEF;*/
17}
18#login .inner .fheader {
19        padding:4px;margin:3px 0px 3px 0;color:#2e3741;font-size:14px;font-weight:bold;
20}
21#login .inner .cssform p {
22        clear: left;
23        margin: 0;
24        padding: 5px 0 8px 0;
25        padding-left: 105px;
26/*      border-top: 1px dashed gray;*/
27        margin-bottom: 10px;
28        height: 1%;
29}
30#login .inner .cssform input[type='text'] {
31        width: 120px;
32}
33#login .inner .cssform label {
34        font-weight: bold;
35        float: left;
36        margin-left: -105px;
37        width: 100px;
38}
39#login .inner .login_message {color:red;}
40#login .inner .text_ {width:120px;}
41#login .inner .chk {height:12px;}
42</style>
43</head>
44
45<body>
46        <div id='login'>
47        <h1>Welcome to gnuMims please log in</h1>
48        The demo users are "admin" and "user" both having password "pass"
49
50                <div class='inner'>
51                        <g:if test='${flash.message}'>
52                        <div class='login_message'>${flash.message}</div>
53                        </g:if>
54                        <div class='fheader'></div>
55                        <form action='${postUrl}' method='POST' id='loginForm' class='cssform'>
56                                <p>
57                                        <label for='j_username'>Login ID</label>
58                                        <input type='text' class='text_' name='j_username' id='j_username' value='${request.remoteUser}' />
59                                </p>
60                                <p>
61                                        <label for='j_password'>Password</label>
62                                        <input type='password' class='text_' name='j_password' id='j_password' />
63                                </p>
64<!--                            <p>
65                                        <label for='remember_me'>Remember me</label>
66                                        <input type='checkbox' class='chk' name='_spring_security_remember_me' id='remember_me'
67                                        <g:if test='${hasCookie}'>checked='checked'</g:if> />
68                                </p>-->
69                                <p>
70                                        <input type='submit' value='Login' />
71                                </p>
72                        </form>
73                </div>
74        </div>
75<script type='text/javascript'>
76<!--
77(function(){
78        document.forms['loginForm'].elements['j_username'].focus();
79})();
80// -->
81</script>
82</body>
Note: See TracBrowser for help on using the repository browser.