diff options
Diffstat (limited to 'gn3/templates/oauth2/authorise-user.html')
-rw-r--r-- | gn3/templates/oauth2/authorise-user.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gn3/templates/oauth2/authorise-user.html b/gn3/templates/oauth2/authorise-user.html index 33c5b16..b9284e5 100644 --- a/gn3/templates/oauth2/authorise-user.html +++ b/gn3/templates/oauth2/authorise-user.html @@ -7,9 +7,10 @@ {%block content%} {{flash_messages()}} -<form method="POST" action="#"> +<form method="POST" action="{{url_for('oauth2.auth.authorise')}}"> <input type="hidden" name="response_type" value="{{response_type}}" /> <input type="hidden" name="scope" value="{{scope | join(' ')}}" /> + <input type="hidden" name="client_id" value="{{client.client_id}}" /> <p> You are authorising "{{client.client_metadata.client_name}}" to access Genenetwork 3 with the following scope: |