source: trunk/grails-app/views/appCore/options.gsp @ 127

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

Logins now route through a welcome action to allow flash message and user environment setup. Session timeout now user configurable and defaults to 12 hours. Work on Planned Maintenance.

  • Property svn:executable set to *
File size: 865 bytes
Line 
1<html>
2    <head>
3        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
4        <meta name="layout" content="main" />
5        <title>Options</title>
6    </head>
7    <body>
8        <div class="nav">
9            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
10        </div>
11        <div class="body">
12            <h1>Welcome to Options</h1>
13            <g:if test="${flash.message}">
14            <div class="message">${flash.message}</div>
15            </g:if>
16            <br/>
17            <div class="dialog">
18            <a href="${createLink(action:'changePassword')}">Change Password</a>
19            <br />
20            <br />
21            <a href="${createLink(action:'changeSessionTimeout')}">Change Session Timeout</a>
22            </div>
23        </div>
24    </body>
25</html>
Note: See TracBrowser for help on using the repository browser.