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

Login

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

Don't have an account? Sign up

} } templ Main(title string, err types.Message) { @content(err, title) }