From 5a7811b0677cc91b5a3a097a7c38c4ee1b3f7a0e Mon Sep 17 00:00:00 2001 From: fr33domlover Date: Sun, 1 Jul 2018 15:10:11 +0000 Subject: [PATCH] Include CSRF token in login form, otherwise the check fails and login fails CSRF token check doesn't find the token in the login POST, so logins fail. For some reason, yesod-auth-account intentionally avoided putting the token in the login form. I updated the yesod-auth-account code to include the token. This patch simply choose the new revision with the fix, so that logins work again. --- stack.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.yaml b/stack.yaml index 7784a87..08e0367 100644 --- a/stack.yaml +++ b/stack.yaml @@ -20,7 +20,7 @@ packages: # - '../yesod-auth-account' - location: git: https://dev.angeley.es/s/fr33domlover/r/yesod-auth-account - commit: d44b85e979b52baaba346b236250a4a84dbd5c7f + commit: cc9d6a5d4e0d5fb3b061a5a9ccc0ab03eea89811 extra-dep: true - '../yesod-mail-send'