summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/idp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/idp b/bin/idp
index 759c14d..5dba984 100755
--- a/bin/idp
+++ b/bin/idp
@@ -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>