source: trunk/grails-app/views/register/forgotPassword.gsp @ 976

Last change on this file since 976 was 976, checked in by robert@…, 12 years ago

Authentication and authorization for studies is added, according to ticket 118

File size: 748 bytes
Line 
1<head>
2  <title><g:message code='spring.security.ui.forgotPassword.title'/></title>
3  <meta name='layout' content='main'/>
4</head>
5
6<body>
7
8<p/>
9
10        <g:form action='forgotPassword' name="forgotPasswordForm" autocomplete='off'>
11
12        <g:if test='${emailSent}'>
13          <br/>
14          <g:message code='spring.security.ui.forgotPassword.sent'/>
15        </g:if>
16
17        <g:else>
18
19          <br/>
20          <h4><g:message code='spring.security.ui.forgotPassword.description'/></h4>
21
22        <table>
23                <tr>
24                        <td><label for="username"><g:message code='spring.security.ui.forgotPassword.username'/></label></td>
25                        <td><g:textField name="username" size="25" /></td>
26                </tr>
27        </table>
28
29          <input type="submit" value="Reset my password">
30
31        </g:else>
32
33        </g:form>
34
35
36</body>
Note: See TracBrowser for help on using the repository browser.