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: }

Verify Your Identity

Please enter the 6-digit code generated by your authentication app to complete the login process.

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