source: branches/TaskRewrite/src/grails-app/views/appCore/home.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.

  • Property svn:executable set to *
File size: 716 bytes
RevLine 
[59]1<html>
2<head>
3<meta http-equiv="Content-Type" content="text/html;
4      charset=UTF-8"/>
5<meta name="layout" content="main" />
6<title>Home</title>
7</head>
8    <body>
9        <div class="nav">
10            <span class="menuButton"><g:link class="list" controller="task" action="list">Tasks</g:link></span>
11
12        </div>
13        <div class="body">
14            <g:if test="${flash.message}">
15                <div class="message">${flash.message}</div>
16            </g:if>
[73]17            <g:hasErrors bean="${appCore}">
[59]18                <div class="errors">
[73]19                    <g:renderErrors bean="${appCore}" as="list" />
[59]20                </div>
21            </g:hasErrors>
22           
23        </div>
24    </body>
25</html>
Note: See TracBrowser for help on using the repository browser.