package totpView import ( "github.com/fossyy/filekeeper/view/client/layout" "github.com/fossyy/filekeeper/types" ) templ content(title string, msg types.Message) { @layout.Base(title){
switch msg.Code { case 0: }

Two-Factor Authentication

Enter the 6-digit code from your authenticator app

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