-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial support for SSO with HTTP-POST binding
- Loading branch information
Samuel Campos
committed
Jan 24, 2018
1 parent
dd3f0b4
commit 898eef5
Showing
5 changed files
with
135 additions
and
28 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>%s</title> | ||
</head> | ||
<body> | ||
<form method="POST" name="hiddenform" action="%s"> | ||
<input type="hidden" name="SAMLRequest" value="%s" /> | ||
<input type="hidden" name="RelayState" value="%s" /> | ||
<noscript> | ||
<p>Script is disabled. Click Submit to continue.</p> | ||
<input type="submit" value="Submit" /> | ||
</noscript> | ||
</form> | ||
<script language="javascript">window.setTimeout('document.forms[0].submit()', 0);</script> | ||
</body> | ||
</html> |