<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>POST data</title>
</head>
<body onload="document.getElementsByTagName('input')[0].click();">

<noscript>
    <p><strong>Note:</strong> Since your browser does not support JavaScript, you must
        press the button below once to proceed.</p>
</noscript>

<form method="post" action="{{ destination }}">
    <input type="submit" style="display:none;"/>

    {% if SAMLRequest is defined %}
        <input type="hidden" name="SAMLRequest" value="{{ SAMLRequest }}"/>
    {% else %}
        <input type="hidden" name="SAMLResponse" value="{{ SAMLResponse }}"/>
    {% endif %}
    <input type="hidden" name="RelayState" value="{{ RelayState }}"/>

    <noscript>
        <input type="submit" value="Submit"/>
    </noscript>

</form>
</body>
</html>

