mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
17 lines
426 B
Handlebars
17 lines
426 B
Handlebars
|
<html>
|
||
|
<body>
|
||
|
<form id="saml-form" method="post" action="{{entityEndpoint}}" autocomplete="off">
|
||
|
<input type="hidden" name="{{type}}" value="{{context}}" />
|
||
|
{{#if relayState}}
|
||
|
<input type="hidden" name="RelayState" value="{{relayState}}" />
|
||
|
{{/if}}
|
||
|
</form>
|
||
|
<script type="text/javascript">
|
||
|
// Automatic form submission
|
||
|
(function(){
|
||
|
document.forms[0].submit();
|
||
|
})();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|