package forgotPasswordView import ( "github.com/fossyy/filekeeper/types" "github.com/fossyy/filekeeper/view/client/layout" ) templ content(title string, err types.Message) { @layout.Base(title) {

Forgot Password

Enter your email address and we'll send you instructions to reset your password.

switch err.Code { case 0: }
} } templ Main(title string, err types.Message) { @content(title, err) } templ NewPasswordForm(title string, err types.Message) { @layout.Base(title) {

Reset Password

switch err.Code { case 0: }
} } templ EmailSend(title string) { @layout.Base(title) {

Email Verification Sent

We've sent a verification email to your inbox. Please check your email and follow the instructions to change your password.

} } templ ChangeSuccess(title string) { @layout.Base(title) {

Password Changed Successfully

Your password has been successfully updated. Feel free to continue enjoying our platform.

} }