package userTotpSetupView import ( "github.com/fossyy/filekeeper/view/layout" ) templ content(title string, qrcode string, code string) { @layout.Base(title){

Set up Two-Factor Authentication

Secure your account with time-based one-time passwords (TOTP).

QR Code

{code}

@layout.Footer() } } templ Main(title string, qrcode string, code string) { @content(title, qrcode, code) }