summaryrefslogtreecommitdiffstats
path: root/templates/saml2/post_response.html
blob: f8224108d5eb5d9336ab357d863ad1124e28dd5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "master.html" %}
{% block main %}
<div class="col-sm-5 col-md-6 col-lg-7 details">
  <form id="saml-response" method="post" action="{{ action }}">
    {% for field in fields %}
        <input type="hidden" name="{{ field[0] }}" value="{{ field[1] }}">
        </input>
    {% endfor %}
    <button type="submit">{{ submit }}</button>
  </form>
  <script>document.getElementById("saml-response").submit();</script>
</div>
{% endblock %}