1
|
##
|
2
|
## Velocity Template for logout flow's concluding view-state (with propagation)
|
3
|
##
|
4
|
## Velocity context will contain the following properties
|
5
|
## flowExecutionUrl - the form action location
|
6
|
## flowRequestContext - the Spring Web Flow RequestContext
|
7
|
## flowExecutionKey - the SWF execution key (this is built into the flowExecutionUrl)
|
8
|
## profileRequestContext - root of context tree
|
9
|
## logoutContext - context with SPSession details for logout operation
|
10
|
## multiRPContext - context with RelyingPartyContexts and possibly SP UI information from the metadata
|
11
|
## htmlEncoder - HTMLEncoder class
|
12
|
## urlEncoder - urlEncoder class
|
13
|
## codecUtil - CodecUtil class
|
14
|
## request - HttpServletRequest
|
15
|
## response - HttpServletResponse
|
16
|
## environment - Spring Environment object for property resolution
|
17
|
## custom - arbitrary object injected by deployer
|
18
|
##
|
19
|
<!DOCTYPE html>
|
20
|
<html>
|
21
|
<head>
|
22
|
<meta charset="utf-8">
|
23
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
24
|
<title>#springMessageText("idp.title", "Web Login Service")</title>
|
25
|
<link rel="stylesheet" type="text/css" href="$request.getContextPath()/css/main.css">
|
26
|
<link rel="stylesheet" type="text/css" href="$request.getContextPath()/css/logout.css">
|
27
|
</head>
|
28
|
|
29
|
<body>
|
30
|
<div class="wrapper">
|
31
|
<div class="container">
|
32
|
<header>
|
33
|
<img src="$request.getContextPath()#springMessage("idp.logo")" alt="#springMessageText("idp.logo.alt-text", "logo")">
|
34
|
</header>
|
35
|
|
36
|
<div class="content">
|
37
|
<div class="column one">
|
38
|
<p>#springMessageText("idp.logout.attempt", "Attempting to log out of the following services:")</p>
|
39
|
#parse("logout/propagate.vm")
|
40
|
</div>
|
41
|
<div class="column two">
|
42
|
<ul class="list list-help">
|
43
|
<li class="list-help-item"><a href="#springMessageText("idp.url.password.reset", "#")"><span class="item-marker">›</span> #springMessageText("idp.login.forgotPassword", "Forgot your password?")</a></li>
|
44
|
<li class="list-help-item"><a href="#springMessageText("idp.url.helpdesk", "#")"><span class="item-marker">›</span> #springMessageText("idp.login.needHelp", "Need Help?")</a></li>
|
45
|
</ul>
|
46
|
</div>
|
47
|
</div>
|
48
|
</div>
|
49
|
|
50
|
<footer>
|
51
|
<div class="container container-footer">
|
52
|
<p class="footer-text">#springMessageText("idp.footer", "Insert your footer text here.")</p>
|
53
|
</div>
|
54
|
</footer>
|
55
|
</div>
|
56
|
|
57
|
</body>
|
58
|
</html>
|