source: branches/TaskRewrite/src/grails-app/views/appCore/create.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: 1.3 KB
RevLine 
[59]1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
7        <title>Create AppCore</title>         
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="list" action="list">AppCore List</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Create AppCore</h1>
16            <g:if test="${flash.message}">
17            <div class="message">${flash.message}</div>
18            </g:if>
19            <g:hasErrors bean="${appCoreInstance}">
20            <div class="errors">
21                <g:renderErrors bean="${appCoreInstance}" as="list" />
22            </div>
23            </g:hasErrors>
24            <g:form action="save" method="post" >
25                <div class="dialog">
26                    <table>
27                        <tbody>
28                       
29                        </tbody>
30                    </table>
31                </div>
32                <div class="buttons">
33                    <span class="button"><input class="save" type="submit" value="Create" /></span>
34                </div>
35            </g:form>
36        </div>
37    </body>
38</html>
Note: See TracBrowser for help on using the repository browser.