package pages import ( "git.grosinger.net/tgrosinger/saasitone/templ/components" "git.grosinger.net/tgrosinger/saasitone/pkg/form" "git.grosinger.net/tgrosinger/saasitone/pkg/page" ) type ForgotPasswordForm struct { Email string `form:"email" validate:"required,email"` form.Submission } templ ForgotPassword(p page.Page, f *ForgotPasswordForm) {

Enter your email address and we'll email you a link that allows you to reset your password.

@components.FieldErrors(f.Submission.GetFieldErrors("Email"))

Cancel

@components.CSRF(p.CSRF)
}