Browse Source

Don't show Link to TOTP if not set up (#27585)

tags/v1.22.0-rc0
JakobDev 8 months ago
parent
commit
328da56a28
No account linked to committer's email address
2 changed files with 13 additions and 3 deletions
  1. 8
    0
      routers/web/auth/webauthn.go
  2. 5
    3
      templates/user/auth/webauthn.tmpl

+ 8
- 0
routers/web/auth/webauthn.go View File

@@ -37,6 +37,14 @@ func WebAuthn(ctx *context.Context) {
return
}

hasTwoFactor, err := auth.HasTwoFactorByUID(ctx, ctx.Session.Get("twofaUid").(int64))
if err != nil {
ctx.ServerError("HasTwoFactorByUID", err)
return
}

ctx.Data["HasTwoFactor"] = hasTwoFactor

ctx.HTML(http.StatusOK, tplWebAuthn)
}


+ 5
- 3
templates/user/auth/webauthn.tmpl View File

@@ -14,9 +14,11 @@
<div class="is-loading" style="width: 40px; height: 40px"></div>
{{ctx.Locale.Tr "webauthn_press_button"}}
</div>
<div class="ui attached segment">
<a href="{{AppSubUrl}}/user/two_factor">{{ctx.Locale.Tr "webauthn_use_twofa"}}</a>
</div>
{{if .HasTwoFactor}}
<div class="ui attached segment">
<a href="{{AppSubUrl}}/user/two_factor">{{ctx.Locale.Tr "webauthn_use_twofa"}}</a>
</div>
{{end}}
</div>
</div>
</div>

Loading…
Cancel
Save