n8n/packages/cli/templates/sso/saml-init-form.handlebars
कारतोफ्फेलस्क्रिप्ट™ 0e43286435
move sso-init-form to a handlebars view as well
2024-10-22 13:32:47 +02:00

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>