mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 04:54:09 +00:00
3ea7437fa6
Fixes https://github.com/go-gitea/gitea/issues/30005. Regression from https://github.com/go-gitea/gitea/pull/29945. There was only once instance of `tw-content-center` before that PR, so I just ran below command and reverted that one instance. ```sh perl -p -i -e 's#tw-content-center#tw-items-center#g' web_src/js/**/* templates/**/* models/**/* tests/**/* ``` (cherry picked from commit 04f9ad056882fc3f21b247b16f84437adf0f36d8) Conflicts: templates/repo/diff/conversation.tmpl templates/repo/header.tmpl templates/repo/issue/filter_list.tmpl templates/repo/issue/view_content/conversation.tmpl templates/repo/wiki/view.tmpl web_src/js/components/DashboardRepoList.vue re-ran the command after discarding the Gitea changes to ensure all Forgejo files are also covered
64 lines
2 KiB
Go HTML Template
64 lines
2 KiB
Go HTML Template
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "settings.manage_openid"}}
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
<div class="flex-list">
|
|
<div class="flex-item">
|
|
{{ctx.Locale.Tr "settings.openid_desc"}}
|
|
</div>
|
|
{{range .OpenIDs}}
|
|
<div class="flex-item tw-items-center">
|
|
<div class="flex-item-leading">
|
|
{{svg "fontawesome-openid" 20}}
|
|
</div>
|
|
<div class="flex-item-main">
|
|
<div class="flex-item-title">{{.URI}}</div>
|
|
</div>
|
|
<div class="flex-item-trailing">
|
|
<form action="{{AppSubUrl}}/user/settings/security/openid/toggle_visibility" method="post">
|
|
{{$.CsrfTokenHtml}}
|
|
<input name="id" type="hidden" value="{{.ID}}">
|
|
{{if .Show}}
|
|
<button class="ui tiny button">
|
|
{{svg "octicon-eye" 16 "icon"}}
|
|
{{ctx.Locale.Tr "settings.hide_openid"}}
|
|
</button>
|
|
{{else}}
|
|
<button class="ui tiny button">
|
|
{{svg "octicon-eye-closed" 16 "icon"}}
|
|
{{ctx.Locale.Tr "settings.show_openid"}}
|
|
</button>
|
|
{{end}}
|
|
</form>
|
|
<button class="ui red tiny button delete-button" data-modal-id="delete-openid" data-url="{{AppSubUrl}}/user/settings/security/openid/delete" data-id="{{.ID}}">
|
|
{{ctx.Locale.Tr "settings.delete_key"}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<div class="ui attached bottom segment">
|
|
<form class="ui form" action="{{AppSubUrl}}/user/settings/security/openid" method="post">
|
|
{{.CsrfTokenHtml}}
|
|
<div class="required field {{if .Err_OpenID}}error{{end}}">
|
|
<label for="openid">{{ctx.Locale.Tr "settings.add_new_openid"}}</label>
|
|
<input id="openid" name="openid" type="text" required>
|
|
</div>
|
|
<button class="ui primary button">
|
|
{{ctx.Locale.Tr "settings.add_openid"}}
|
|
</button>
|
|
</form>
|
|
|
|
<div class="ui g-modal-confirm delete modal" id="delete-openid">
|
|
<div class="header">
|
|
{{svg "octicon-trash"}}
|
|
{{ctx.Locale.Tr "settings.openid_deletion"}}
|
|
</div>
|
|
<div class="content">
|
|
<p>{{ctx.Locale.Tr "settings.openid_deletion_desc"}}</p>
|
|
</div>
|
|
{{template "base/modal_actions_confirm" .}}
|
|
</div>
|
|
</div>
|