Amelioration CSS

Prise en compte des conferenceCreationToken lors de la creation de conference.
Corrections de forgotPassword
This commit is contained in:
2008-02-15 10:12:59 +00:00
parent b55277095c
commit afb3e98b9b
9 changed files with 62 additions and 12 deletions

View File

@@ -96,6 +96,7 @@ form.forgotPassword.email=E-Mail address for your account :
form.forgotPassword.submit=Request new password
form.forgotPassword.help=Please enter the email address you used for your YACOS account.\nA new password will be generated and sent into your mailbox.
forgotPassword.title=Reset your password
forgotPassword.submitted=A new password has been successfully generated for your account.\nIt has been sent to your email address.
###################
# MESSAGE ERROR
@@ -174,6 +175,8 @@ evaluation.choose=Choose an title to evaluation from the list
invitation.send=Send an invitation
conference.error.noTokenLeft=You have no conference creation token left !\nPlease contact the administrator
#Validation messages for errors
submissionArticle.title=The title should not be null
submissionArticle.theme=The theme should not be null

View File

@@ -4,7 +4,12 @@
<head></head>
<body>
Acces denied. Sorry for this inconvenience.
<div class="errorBox">
${message}
</div>
</body>
</html>

View File

@@ -10,6 +10,13 @@
<fmt:message key="form.forgotPassword.help"/>
</p>
<div class="cbb">
<c:choose>
<c:when test="${success}">
<p class="formOk">
<fmt:message key="forgotPassword.submitted"/>
</p>
</c:when>
<c:otherwise>
<form:form commandName="forgotPassword">
<h2>
<form:label path="email">
@@ -22,6 +29,8 @@
</div>
<input type="submit" name="submit" value="<fmt:message key="form.forgotPassword.submit"/>"/>
</form:form>
</c:otherwise>
</c:choose>
</div>
</body>