SEC-1494: Updated the tutorial webapp to use CSS and make use of the securityHiddenUI element when UI security is disabled.

This commit is contained in:
Luke Taylor
2011-01-25 13:15:57 +00:00
parent 00200cecbc
commit d58dd79a52
7 changed files with 89 additions and 14 deletions

View File

@@ -1,5 +1,16 @@
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="<c:url value='/static/css/tutorial.css'/>" type="text/css" />
<title>Accounts</title>
</head>
<body>
<div id="content">
<h1>Accounts</h1>
<a href="index.jsp">Home</a><br><br>
@@ -28,4 +39,7 @@
</c:forEach>
</table>
<p><a href="j_spring_security_logout">Logout</a>
<p><a href="j_spring_security_logout">Logout</a></p>
</div>
</body>
</html>