2022-01-14 15:03:31 +00:00
|
|
|
{{template "base/head" .}}
|
2023-06-07 11:20:18 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signin webauthn-prompt">
|
|
|
|
<div class="ui page grid">
|
2022-09-09 20:18:54 +00:00
|
|
|
<div class="column center aligned">
|
2023-06-07 11:20:18 +00:00
|
|
|
{{template "user/auth/webauthn_error" .}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<h3 class="ui top attached header">{{ctx.Locale.Tr "twofa"}}</h3>
|
2023-06-07 11:20:18 +00:00
|
|
|
<div class="ui attached segment">
|
|
|
|
{{svg "octicon-key" 56}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<h3>{{ctx.Locale.Tr "webauthn_insert_key"}}</h3>
|
2023-06-07 11:20:18 +00:00
|
|
|
{{template "base/alert" .}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "webauthn_sign_in"}}</p>
|
2023-06-07 11:20:18 +00:00
|
|
|
</div>
|
Migrate margin and padding helpers to tailwind (#30043)
This will conclude the refactor of 1:1 class replacements to tailwind,
except `gt-hidden`. Commands ran:
```bash
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-0#tw-$1$2-0#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-1#tw-$1$2-0.5#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-2#tw-$1$2-1#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-3#tw-$1$2-2#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-4#tw-$1$2-4#g' {web_src/js,templates,routers,services}/**/*
perl -p -i -e 's#gt-(p|m)([lrtbxy])?-5#tw-$1$2-8#g' {web_src/js,templates,routers,services}/**/*
```
2024-03-24 16:42:49 +00:00
|
|
|
<div class="ui attached segment tw-flex tw-items-center tw-justify-center tw-gap-1 tw-py-2">
|
2024-03-23 20:11:15 +00:00
|
|
|
<div class="is-loading tw-w-[40px] tw-h-[40px]"></div>
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "webauthn_press_button"}}
|
2023-06-07 11:20:18 +00:00
|
|
|
</div>
|
2023-10-11 20:12:54 +00:00
|
|
|
{{if .HasTwoFactor}}
|
|
|
|
<div class="ui attached segment">
|
|
|
|
<a href="{{AppSubUrl}}/user/two_factor">{{ctx.Locale.Tr "webauthn_use_twofa"}}</a>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2022-01-14 15:03:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|