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

Sign Up

switch err.Code { case 0: }
Or continue with

Already have an account? Log in

} } templ Main(title string, err types.Message) { @form(err, title) } 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 verify your account.

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

Account Verified

Your account has been successfully verified. You can now access all the features of our platform.

} }