2022-01-14 16:03:31 +01:00
|
|
|
{{template "base/head" .}}
|
2023-06-07 13:20:18 +02:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user signin webauthn-prompt">
|
|
|
|
<div class="ui page grid">
|
2022-09-09 22:18:54 +02:00
|
|
|
<div class="column center aligned">
|
2023-06-07 13:20:18 +02:00
|
|
|
{{template "user/auth/webauthn_error" .}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<h3 class="ui top attached header">{{ctx.Locale.Tr "twofa"}}</h3>
|
2023-06-07 13:20:18 +02:00
|
|
|
<div class="ui attached segment">
|
|
|
|
{{svg "octicon-key" 56}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<h3>{{ctx.Locale.Tr "webauthn_insert_key"}}</h3>
|
2023-06-07 13:20:18 +02:00
|
|
|
{{template "base/alert" .}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "webauthn_sign_in"}}</p>
|
2023-06-07 13:20:18 +02: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}/**/*
```
(cherry picked from commit 68ec9b48592fe88765bcc3a73093d43c98b315de)
Conflicts:
routers/web/repo/view.go
templates/base/head_navbar.tmpl
templates/repo/code/recently_pushed_new_branches.tmpl
templates/repo/diff/box.tmpl
templates/repo/diff/compare.tmpl
templates/repo/diff/conversation.tmpl
templates/repo/header.tmpl
templates/repo/issue/filter_list.tmpl
templates/repo/issue/view_content/conversation.tmpl
templates/repo/issue/view_content/sidebar.tmpl
templates/repo/settings/options.tmpl
templates/repo/view_file.tmpl
templates/shared/user/blocked_users.tmpl
templates/status/500.tmpl
web_src/js/components/DashboardRepoList.vue
resolved by prefering Forgejo version and applying the
commands to all files
2024-03-24 17:42:49 +01:00
|
|
|
<div class="ui attached segment tw-flex tw-items-center tw-justify-center tw-gap-1 tw-py-2">
|
2024-03-23 21:11:15 +01:00
|
|
|
<div class="is-loading tw-w-[40px] tw-h-[40px]"></div>
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "webauthn_press_button"}}
|
2023-06-07 13:20:18 +02:00
|
|
|
</div>
|
2023-10-11 22:12:54 +02: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 16:03:31 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|