mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 07:47:01 +01:00
036fb7861f
There were several issues with the WebAuthn registration and testing code and the style was very old javascript with jquery callbacks. This PR uses async and fetch to replace the JQuery code. Ref #22651 Signed-off-by: Andrew Thornton <art27@cantab.net> --------- Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: silverwind <me@silverwind.io>
23 lines
824 B
Handlebars
23 lines
824 B
Handlebars
{{template "base/head" .}}
|
|
<div class="user signin webauthn-prompt">
|
|
<div class="ui middle centered very relaxed page grid">
|
|
<div class="column center aligned">
|
|
<h3 class="ui top attached header">
|
|
{{.locale.Tr "twofa"}}
|
|
</h3>
|
|
{{template "user/auth/webauthn_error" .}}
|
|
<div class="ui attached segment">
|
|
{{svg "octicon-key" 56}}
|
|
<h3>{{.locale.Tr "webauthn_insert_key"}}</h3>
|
|
{{template "base/alert" .}}
|
|
<p>{{.locale.Tr "webauthn_sign_in"}}</p>
|
|
</div>
|
|
<div class="ui attached segment"><div class="ui active indeterminate inline loader"></div> {{.locale.Tr "webauthn_press_button"}} </div>
|
|
<div class="ui attached segment">
|
|
<a href="{{AppSubUrl}}/user/two_factor">{{.locale.Tr "webauthn_use_twofa"}}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|