Ignore:
Timestamp:
Sep 28, 2009, 10:01:43 AM (15 years ago)
Author:
gav
Message:

Install Navigation plugin, work on navigation and hopefully fixed a few more IE vs Firefox CSS issues.
New skin for class-diagram plugin.
Adjust security config to suite.
Replace home.gsp with start.gsp, remove options.gsp and acknowledgements.gsp as they are now on start.gsp tabs.
Create search pages for Tasks, Assets and Inventory.
Change suggested login to manager.
Change all date formats to format="EEE, dd-MMM-yyyy".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/appCore/changePassword.gsp

    r101 r139  
    11<head>
    2         <meta name="layout" content="main" />
    3         <title>Change Password</title>
     2    <meta name="layout" content="main" />
     3    <title>Change Password</title>
     4    <nav:resources override="true"/>
    45</head>
    56
    67<body onload="document.changePasswordForm.pass.focus();">
    7         <div class="nav">
    8                 <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
     8    <div class="nav">
     9        <nav:renderSubItems group="nav"/>
    910    </div>
    1011
    11         <div class="body">
    12                 <h1>Change Password</h1>
    13                 <g:if test="${flash.message}">
    14                 <div class="message">${flash.message}</div>
    15                 </g:if>
    16                 <g:hasErrors bean="${personInstance}">
    17                 <div class="errors">
    18                         <g:renderErrors bean="${personInstance}" as="list" />
    19                 </div>
    20                 </g:hasErrors>
     12    <div class="body">
     13        <g:if test="${flash.message}">
     14        <div class="message">${flash.message}</div>
     15        </g:if>
     16        <g:hasErrors bean="${personInstance}">
     17        <div class="errors">
     18            <g:renderErrors bean="${personInstance}" as="list" />
     19        </div>
     20        </g:hasErrors>
    2121
    22                 <g:form name="changePasswordForm" id="changePasswordForm">
    23                         <div class="dialog">
    24                                 <table>
    25                                 <tbody>
     22            <g:form name="changePasswordForm" id="changePasswordForm">
     23                <div class="dialog">
     24                    <table>
     25                        <tbody>
    2626
    27                                         <tr class="prop">
    28                                                 <td valign="top" class="name"><label for="pass">Password:</label></td>
    29                                                 <td valign="top" class="value ${hasErrors(bean:personInstance,field:'pass','errors')}">
    30                                                         <input type="password" id="pass" name="pass" />
    31                                                 </td>
    32                                         </tr>
     27                        <tr class="prop">
     28                            <td valign="top" class="name"><label for="pass">Password:</label></td>
     29                            <td valign="top" class="value ${hasErrors(bean:personInstance,field:'pass','errors')}">
     30                                <input type="password" id="pass" name="pass" />
     31                            </td>
     32                        </tr>
    3333
    34                     <tr class="prop">
    35                         <td valign="top" class="name"><label for="confirmPass">Confirm password:</label></td>
    36                         <td valign="top" class="value">
    37                             <input type="password" id="confirmPass" name="confirmPass" />
    38                         </td>
    39                     </tr>
     34                        <tr class="prop">
     35                            <td valign="top" class="name"><label for="confirmPass">Confirm password:</label></td>
     36                            <td valign="top" class="value">
     37                                <input type="password" id="confirmPass" name="confirmPass" />
     38                            </td>
     39                        </tr>
    4040
    41                                 </tbody>
    42                                 </table>
    43                         </div>
     41                    </tbody>
     42                </table>
     43            </div>
    4444
    45                         <div class="buttons">
    46                                 <span class="button"><g:actionSubmit class="save" value="Change Password" action="changePassword"/></span>
    47                         </div>
    48                 </g:form>
     45            <div class="buttons">
     46                <span class="button"><g:actionSubmit class="save" value="Change Password" action="changePassword"/></span>
     47            </div>
     48        </g:form>
    4949
    50         </div>
     50    </div>
    5151
    5252</body>
Note: See TracChangeset for help on using the changeset viewer.