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