This commit is contained in:
Keith Donald
2008-03-07 21:20:30 +00:00
parent 9be8dc78b7
commit ade9edf4e4
2 changed files with 8 additions and 8 deletions

View File

@@ -8,14 +8,14 @@
<h1>Login Required</h1>
<c:if test="${not empty param.login_error}">
<div class="errors">
Your login attempt was not successful, try again.<br /><br />
Reason: #{sessionScope.SPRING_SECURITY_LAST_EXCEPTION.message}
</div>
</c:if>
<div class="section">
<c:if test="${not empty param.login_error}">
<div class="errors">
Your login attempt was not successful, try again.<br />
Reason: #{sessionScope.SPRING_SECURITY_LAST_EXCEPTION.message}
</div>
</c:if>
<br/>
<p>Valid username/passwords are:</p>
<ul>
<li>keith/melbourne</li>

View File

@@ -90,7 +90,7 @@
.errors {
font-weight: bold;
text-align: center;
text-align: left;
color: #600;
}