xhtml and css standards updates
This commit is contained in:
Scott Andrews
2008-04-05 01:21:05 +00:00
parent 88a32ae8b2
commit 7392cfe466
3 changed files with 8 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Spring Travel: Spring MVC and Web Flow Reference Application</title>

View File

@@ -33,7 +33,7 @@
<div class="field">
<div class="label">User:</div>
<div class="output">
<input type="text" name="j_username" <c:if test="${not empty param.login_error}">value="<%= session.getAttribute(AuthenticationProcessingFilter.SPRING_SECURITY_LAST_USERNAME_KEY) %>"</c:if>>
<input type="text" name="j_username" <c:if test="${not empty param.login_error}">value="<%= session.getAttribute(AuthenticationProcessingFilter.SPRING_SECURITY_LAST_USERNAME_KEY) %>"</c:if> />
</div>
</div>
<div class="field">
@@ -45,7 +45,7 @@
<div class="field">
<div class="label">Don't ask for my password for two weeks:</div>
<div class="output">
<input type="checkbox" name="_spring_security_remember_me">
<input type="checkbox" name="_spring_security_remember_me" />
</div>
</div>
</fieldset>

View File

@@ -27,7 +27,6 @@
width: 100%;
margin: 10px 0 0 0;
padding: 0 0 0 0;
text-align: none;
}
#welcome {
@@ -60,7 +59,9 @@
margin-bottom: 5px;
}
#content.spring input[type="submit"], input[type="button"], button {
#content.spring input[type="submit"],
#content.spring input[type="button"],
#content.spring button {
font-weight: bold;
color: #fff;
height: 20px;
@@ -134,7 +135,8 @@
text-align: right;
}
#content .buttonGroup input[type="submit"], .buttonGroup input[type="button"] {
#content .buttonGroup input[type="submit"],
#content .buttonGroup input[type="button"] {
margin-right: 5px;
}