Skip to content

Commit b4d3e01

Browse files
committed
Remove comma from <form> tag
1 parent af038b7 commit b4d3e01

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

yesod-auth/ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog for yesod-auth
22

3+
## Unreleased
4+
5+
* Email: Fix typo in `defaultEmailLoginHandler` template [#1605](https://github.com/yesodweb/yesod/pull/1605)
6+
37
## 1.6.7
48

59
* Redirect behavior of `clearCreds` depends on request type [#1598](https://github.com/yesodweb/yesod/pull/1598)

yesod-auth/Yesod/Auth/Email.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ defaultEmailLoginHandler toParent = do
420420
(widget, enctype) <- generateFormPost loginForm
421421

422422
[whamlet|
423-
<form method="post" action="@{toParent loginR}", enctype=#{enctype}>
423+
<form method="post" action="@{toParent loginR}" enctype=#{enctype}>
424424
<div id="emailLoginForm">
425425
^{widget}
426426
<div>

0 commit comments

Comments
 (0)