commit cdd4420ad33db43357927a17a329a6d02692d870
parent caf23044c87b2b54e0807c02fe157ab4964d36be
Author: n0tr1v <n0tr1v@protonmail.com>
Date: Sat, 3 Dec 2022 17:16:53 -0500
typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/web/handlers/handlers.go b/pkg/web/handlers/handlers.go
@@ -1106,7 +1106,7 @@ func ForgotPasswordHandler(c echo.Context) error {
msg, err := generatePgpEncryptedTokenMessage(user.ID, user.GPGPublicKey)
if err != nil {
data.Error = err.Error()
- return c.Render(http.StatusOK, "pgp", data)
+ return c.Render(http.StatusOK, "forgot-password", data)
}
data.EncryptedMessage = msg
}