authorizer/templates/authorize_form_post.tmpl

14 lines
447 B
Cheetah
Raw Normal View History

2022-10-16 15:16:54 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Authorization Response</title>
</head>
<body onload="document.forms['authorize_form_post'].submit()">
2022-10-18 17:33:52 +00:00
<form action="{{.target_origin}}" name="authorize_form_post" method="POST">
2022-10-16 15:16:54 +00:00
{{ range $key, $val := .authorization_response }}
2022-10-18 17:33:52 +00:00
<input type="hidden" key="{{$key}}" value="{{$val}}" name="{{$key}}" id="{{$key}}" />
2022-10-16 15:16:54 +00:00
{{ end }}
</form>
</body>
</html>