/etc/shibboleth/postTemplate.html is in shibboleth-sp2-common 2.5.3+dfsg-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <html>
<head>
<title>Login Completed</title>
<script language="Javascript">
<!--
function submitOnce() {
if (location.hash.length>0) {
if (confirm("Are you sure you want to resubmit this form information a second time?")) {
document.getElementById("shib_continue").click();
} else {
document.body.innerHTML="<html>Form information was not resubmitted.</html>";
}
} else {
var loc = window.location;
window.location = loc + "#submitted";
document.getElementById("shib_continue").click();
}
}
// -->
</script>
</head>
<body onload="submitOnce()">
<h2>Login Completed</h2>
<noscript>
<p>A form submission to this site was interrupted by the login process.
If you would like to complete it now, submit this form.</p>
</noscript>
<form method="POST" action="<shibmlp action/>">
<shibmlpfor PostedData>
<input type="hidden" name="<shibmlp $name/>" value="<shibmlp $value/>"/>
</shibmlpfor>
<input type="submit" id="shib_continue" name="_shib_continue_" value="Continue"/>
</form>
</body>
</html>
|