129 lines
4.1 KiB
HTML
129 lines
4.1 KiB
HTML
<!DOCTYPE html SYSTEM "https://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-3.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:th="https://www.thymeleaf.org"
|
|
xmlns:layout="https://github.com/ultraq/thymeleaf-layout-dialect">
|
|
<head>
|
|
<title layout:title-pattern="$LAYOUT_TITLE - $CONTENT_TITLE">Spring Session Sample</title>
|
|
<link rel="icon" type="image/x-icon" th:href="@{/favicon.ico}" href="../static/favicon.ico"/>
|
|
<link th:href="@{/webjars/bootstrap/css/bootstrap.min.css}" href="/webjars/bootstrap/css/bootstrap.min.css"
|
|
rel="stylesheet"></link>
|
|
<style type="text/css">
|
|
/* Sticky footer styles
|
|
-------------------------------------------------- */
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
/* The html and body elements cannot have any padding or margin. */
|
|
}
|
|
|
|
/* Wrapper for page content to push down footer */
|
|
#wrap {
|
|
min-height: 100%;
|
|
height: auto !important;
|
|
height: 100%;
|
|
/* Negative indent footer by it's height */
|
|
margin: 0 auto -60px;
|
|
}
|
|
|
|
/* Set the fixed height of the footer here */
|
|
#push,
|
|
#footer {
|
|
height: 60px;
|
|
}
|
|
|
|
#footer {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
/* Lastly, apply responsive CSS fixes as necessary */
|
|
@media (max-width: 767px) {
|
|
#footer {
|
|
margin-left: -20px;
|
|
margin-right: -20px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
}
|
|
}
|
|
|
|
|
|
/* Custom page CSS
|
|
-------------------------------------------------- */
|
|
/* Not required for template or sticky footer method. */
|
|
|
|
.container {
|
|
width: auto;
|
|
max-width: 680px;
|
|
}
|
|
|
|
.container .credit {
|
|
margin: 20px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: green;
|
|
}
|
|
|
|
.navbar-form {
|
|
margin-left: 1em;
|
|
}
|
|
</style>
|
|
<link th:href="@{/webjars/bootstrap/css/bootstrap-responsive.min.css}"
|
|
href="/webjars/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet"></link>
|
|
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
<!--[if lt IE 9]>
|
|
<script th:src="@{/webjars/html5shiv/html5shiv.min.js}" src="/webjars/html5shiv/html5shiv.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
|
|
<body>
|
|
<div id="wrap">
|
|
<div class="navbar navbar-inverse navbar-static-top">
|
|
<div class="navbar-inner">
|
|
<div class="container">
|
|
<a class="brand" th:href="@{/}"><img th:src="@{/images/logo.png}" alt="Spring Security Sample"/></a>
|
|
|
|
<div class="nav-collapse collapse"
|
|
th:with="currentUser=${#httpServletRequest.userPrincipal?.principal}">
|
|
<div th:if="${currentUser != null}">
|
|
<form class="navbar-form pull-right" th:action="@{/logout}" method="post">
|
|
<input type="submit" value="Log out"/>
|
|
</form>
|
|
<p id="un" class="navbar-text pull-right" th:text="${currentUser.username}">
|
|
sample_user
|
|
</p>
|
|
</div>
|
|
<ul class="nav">
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Begin page content -->
|
|
<div class="container">
|
|
<div class="alert alert-success"
|
|
th:if="${globalMessage}"
|
|
th:text="${globalMessage}">
|
|
Some Success message
|
|
</div>
|
|
<div layout:fragment="content">
|
|
Fake content
|
|
</div>
|
|
</div>
|
|
|
|
<div id="push"><!-- --></div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<div class="container">
|
|
<p class="muted credit">Visit the <a href="https://projects.spring.io/spring-session/">Spring Session</a> site
|
|
for more <a href="https://github.com/spring-projects/spring-session/tree/master/spring-session-samples">samples</a>.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|