summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/openid_provider/templates/openid_provider/response.html
blob: 5f7e46fad032c5ed80f09dc31304580115f0ec43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "openid_provider/base.html" %}

{% block content %}
<div id="openid-body">
  {{ body|safe }}
</div>
<script type="text/javascript">
  // the url is too long (> 2047) to be submitted via GET. It needs to be POSTed.
  // the should not require to click the "Continue"-Button, therefore we submit it via js
  document.getElementById('openid-body').getElementsByTagName('form')[0].submit();
</script>
{% endblock %}