diff options
author | Frederick Muriuki Muriithi | 2024-08-08 09:52:55 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-08-08 09:52:55 -0500 |
commit | 62273d5438ce8b8a7b1810b170b01f1db3c78515 (patch) | |
tree | 407359d132d89ba19dc60e68e5fa95b11e147866 /gn_auth/auth/authorisation/users | |
parent | 2fe7a65b74992c311f6fdfa2aaf2aed888213171 (diff) | |
download | gn-auth-62273d5438ce8b8a7b1810b170b01f1db3c78515.tar.gz |
Forward email to email verification page.
Diffstat (limited to 'gn_auth/auth/authorisation/users')
-rw-r--r-- | gn_auth/auth/authorisation/users/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/users/views.py b/gn_auth/auth/authorisation/users/views.py index 4530522..86db014 100644 --- a/gn_auth/auth/authorisation/users/views.py +++ b/gn_auth/auth/authorisation/users/views.py @@ -315,7 +315,7 @@ def handle_unverified(): # or pass the client_id here? return render_template( "users/unverified-user.html", - email=form.get("user:email"), + email=request.args["email"], response_type=request.args["response_type"], client_id=request.args["client_id"], redirect_uri=request.args["redirect_uri"]) |