package templates templ Login(formError string, username string) { @Layout("Login", false) {

Sign in

Enter your credentials to continue.

if formError != "" { }

Lost access? Recover account

} } templ Recover(formError string, username string, recoveryKey string) { @Layout("Recover account", false) {

Recover account

Enter your username, recovery key, and a new password.

if formError != "" { }

Remembered your password? Sign in

} } templ RecoveryComplete(newRecoveryKey string) { @Layout("Recovery complete", false) {

Account recovered

Your password was reset and your recovery key was rotated.

{ newRecoveryKey }

Replace your old recovery key with this one.

Go to login

} }