Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing name attribute for checkbox in login.html #2

Open
DominicTannert opened this issue Aug 13, 2019 · 0 comments
Open

Missing name attribute for checkbox in login.html #2

DominicTannert opened this issue Aug 13, 2019 · 0 comments

Comments

@DominicTannert
Copy link

The remember me cookie won't ever be set because the "Remember Me" checkbox is missing the name attribute in login.html line 30:
<input type="checkbox">

It should be changed to:
<input type="checkbox" name="remember">

Why? Because line 19 in auth.py looks for an element by name "remember":
remember = True if request.form.get('remember') else False

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant