Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
shib-idp-conftree/views/duo.vm
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
83 lines (77 sloc)
3.13 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## Velocity Template for Duo login view-state | |
## | |
## Velocity context will contain the following properties | |
## flowExecutionUrl - the form action location | |
## flowRequestContext - the Spring Web Flow RequestContext | |
## flowExecutionKey - the SWF execution key (this is built into the flowExecutionUrl) | |
## profileRequestContext - root of context tree | |
## authenticationContext - context with authentication request information | |
## rpUIContext - the context with SP UI information from the metadata | |
## canonicalUsername - name of user passed to Duo | |
## duoHost - API hostname for Duo frame | |
## duoRequest - signed Duo request message | |
## duoScriptPath - path to Duo JavaScript source | |
## encoder - HTMLEncoder class | |
## request - HttpServletRequest | |
## response - HttpServletResponse | |
## environment - Spring Environment object for property resolution | |
## custom - arbitrary object injected by deployer | |
## | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>#springMessageText("idp.title", "Web Login Service")</title> | |
<link rel="stylesheet" type="text/css" href="$request.getContextPath()/css/main.css"> | |
<style> | |
#duo_iframe { | |
width: 100%; | |
min-width: 304px; | |
max-width: 620px; | |
height: 330px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="container"> | |
<header> | |
<img src="$request.getContextPath()#springMessage("idp.logo")" alt="#springMessageText("idp.logo.alt-text", "logo")"> | |
</header> | |
<div class="content"> | |
<div class="column one"> | |
<h3>#springMessageText("idp.login.duoRequired", "Authentication with Duo is required for the requested service.")</h3> | |
<noscript>#springMessageText("idp.login.duoNoScript", "The Duo service requires JavaScript.")</noscript> | |
<script src="$request.getContextPath()$duoScriptPath"></script> | |
<iframe id="duo_iframe" | |
data-host="$duoHost" | |
data-sig-request="$duoRequest" | |
data-post-action="$flowExecutionUrl" | |
frameborder="0" | |
> | |
</iframe> | |
<form id="duo_form" method="post"> | |
<input type="hidden" name="_eventId" value="proceed" /> | |
</form> | |
<h3 style="text-align: center"> | |
<a href="$flowExecutionUrl&_eventId=cancel">#springMessageText("idp.login.duoCancel", "Cancel this Request")</a> | |
</h3> | |
</div> | |
<div class="column two"> | |
<ul class="list list-help"> | |
<li class="list-help-item"><a href="#springMessageText("idp.url.helpdesk", "#")"><span class="item-marker">›</span> #springMessageText("idp.login.needHelp", "Need Help?")</a></li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<footer> | |
<div class="container container-footer"> | |
<p class="footer-text">#springMessageText("idp.footer", "Insert your footer text here.")</p> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html> |