Skip to content

Commit

Permalink
Fix incorrect form method
Browse files Browse the repository at this point in the history
  • Loading branch information
anorthall committed Jun 19, 2023
1 parent 40c8327 commit 40c0a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/users/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __init__(self, *args, **kwargs):
self.user = None
self.email = None
self.helper = FormHelper()
self.helper.form_method = "get"
self.helper.form_method = "post"
self.helper.layout = Layout(
FloatingField("verify_code"),
Submit("submit", "Verify email", css_class="btn-lg w-100"),
Expand Down

0 comments on commit 40c0a61

Please sign in to comment.