diff options
| author | mo khan <mo@mokhan.ca> | 2025-03-10 14:54:11 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-03-10 14:54:11 -0600 |
| commit | 9a865953c4a95137faa336ca1d228d3ab2bc305f (patch) | |
| tree | b8aa151300e51a0be43d5719e1dee0b2b9a9fbfb /bin/idp | |
| parent | ef02c044c73c31e92ff044fe61ad58e7e767402c (diff) | |
test: add e2e spec for OIDC login
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> |
