source: branches/TaskRewrite/src/grails-app/views/layouts/main.gsp @ 73

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

Add changePassword under options view so that users can change their own password.
Adjust for password validation, userCache etc. Only a small bug during "edit" is left on second "update" command.

File size: 1.3 KB
RevLine 
[56]1<html>
2    <head>
[59]3        <title><g:layoutTitle default="gnuMims" /></title>
[56]4        <link rel="stylesheet" href="${createLinkTo(dir:'css',file:'main.css')}" />
[59]5        <link rel="shortcut icon" href="${createLinkTo(dir:'images',file:'gnuMimsIcon.ico')}" type="image/x-icon" />
[56]6        <g:layoutHead />
[59]7        <g:javascript library="application" />
[56]8    </head>
[73]9   
10    <!-- Added g:pageProperty so that onload in each page works -->
11    <body onload="<g:pageProperty name='body.onload'/>">
[59]12    <div id="wrapper" style="height: 100%;">
13    <div id="top">
14    </div>
15    <div id="content" align="center">
[56]16        <div id="spinner" class="spinner" style="display:none;">
[70]17            <img src="${createLinkTo(dir:'images',file:'spinner.gif')}" alt="Spinner" />
[56]18        </div> 
[59]19        <!-- <div class="logo" style="text-align: center; width: 980px; height: 220px">
20          <img src="${createLinkTo(dir:'images',file:'logo.png')}"
21        alt="gnuMims" />
22        <g:render template="/adminmenubar" />
23
24        </div> -->
25        <div id="Header">
26        </div>
27        <div class="appControl">
[73]28             <g:render template="/adminmenubar" />
[59]29        </div>
30        <!-- Body wrapper div for IE -->
31        <div style="text-align: center; width: 980px">
32            <g:layoutBody />
33        </div>
34    </div>
35    <div id="bottom">
36    </div>
37    </div>
[56]38    </body>     
39</html>
Note: See TracBrowser for help on using the repository browser.