Started on HTMX support.

This commit is contained in:
mikestefanello 2021-12-22 21:51:18 -05:00
parent 3b41e1dfd8
commit b61077dac9
10 changed files with 123 additions and 27 deletions

View file

@ -37,8 +37,8 @@ func (r *ResetPassword) Post(c echo.Context) error {
}
// Parse the form values
form := new(ResetPasswordForm)
if err := c.Bind(form); err != nil {
var form ResetPasswordForm
if err := c.Bind(&form); err != nil {
return fail("unable to parse forgot password form", err)
}