diff options
Diffstat (limited to 'bin/idp')
| -rwxr-xr-x | bin/idp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -234,7 +234,7 @@ class IdentityProvider <head><title></title></head> <body> <h2>Authorize?</h2> - <form action="/oauth/authorize" method="post"> + <form id="authorize-form" action="/oauth/authorize" method="post"> <input type="hidden" name="client_id" value="<%= request.params['client_id'] %>" /> <input type="hidden" name="scope" value="<%= request.params['scope'] %>" /> <input type="hidden" name="redirect_uri" value="<%= request.params['redirect_uri'] %>" /> @@ -243,7 +243,7 @@ class IdentityProvider <input type="hidden" name="state" value="<%= request.params['state'] %>" /> <input type="hidden" name="code_challenge_method" value="<%= request.params['code_challenge_method'] %>" /> <input type="hidden" name="code_challenge" value="<%= request.params['code_challenge'] %>" /> - <input type="submit" value="Submit" /> + <input id="submit-button" type="submit" value="Submit" /> </form> </body> </html> |
