6 lines
292 B
HTML
6 lines
292 B
HTML
|
|
{{ define "content" }}
|
||
|
|
<h1 class="text-2xl mb-4">MFA Setup</h1>
|
||
|
|
<p>MFA Secret: {{ with .PageData }}{{ .MFASecret }}{{ end }}</p>
|
||
|
|
<p>OTP URL: {{ with .PageData }}{{ .OTPURL }}{{ end }}</p>
|
||
|
|
<p>Use a QR code generator with the OTP URL or enter the secret in your authenticator app.</p>
|
||
|
|
{{ end }}
|