diff options
author | Frederick Muriuki Muriithi | 2024-08-20 15:22:03 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-20 16:03:51 -0500 |
commit | 41d5835414082fc6e21f2d668ffd07a34afcf6ec (patch) | |
tree | e8fec13631945713e98280c276d50c0eb4b92234 /gn_auth/templates/users | |
parent | c16eb0722657e7804aeb930749d4c2cc2cc89aff (diff) | |
download | gn-auth-41d5835414082fc6e21f2d668ffd07a34afcf6ec.tar.gz |
Pass GET parameters for correct redirection.
Diffstat (limited to 'gn_auth/templates/users')
-rw-r--r-- | gn_auth/templates/users/forgot-password.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gn_auth/templates/users/forgot-password.html b/gn_auth/templates/users/forgot-password.html index 94fcc68..0455c69 100644 --- a/gn_auth/templates/users/forgot-password.html +++ b/gn_auth/templates/users/forgot-password.html @@ -12,7 +12,10 @@ <div class="row"> <form method="POST" - action="{{url_for('oauth2.users.forgot_password')}}"> + action="{{url_for('oauth2.users.forgot_password', + client_id=client_id, + redirect_uri=redirect_uri, + response_type=response_type)}}"> <div class="form-group"> <span> Provide you email below, and we will send you a link you can use to |