2022-10-09 12:07:41 +00:00
|
|
|
<div class="ui attached segment">
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-list">
|
|
|
|
<div class="flex-item">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.oauth2_application_create_description"}}
|
2022-10-09 12:07:41 +00:00
|
|
|
</div>
|
2023-07-31 22:13:42 +00:00
|
|
|
{{range .Applications}}
|
2024-03-22 19:51:29 +00:00
|
|
|
<div class="flex-item tw-items-center">
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-item-leading">
|
|
|
|
{{svg "octicon-apps" 32}}
|
|
|
|
</div>
|
|
|
|
<div class="flex-item-main">
|
|
|
|
<div class="flex-item-title">{{.Name}}</div>
|
|
|
|
<div class="flex-item-body">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.oauth2_client_id"}}
|
2023-07-31 22:13:42 +00:00
|
|
|
<span class="ui label">{{.ClientID}}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-09 12:24:07 +00:00
|
|
|
{{$isBuiltin := and $.BuiltinApplications (index $.BuiltinApplications .ClientID)}}
|
2023-07-31 22:13:42 +00:00
|
|
|
<div class="flex-item-trailing">
|
2023-08-09 12:24:07 +00:00
|
|
|
{{if $isBuiltin}}
|
2023-09-25 08:56:50 +00:00
|
|
|
<span class="ui basic label" data-tooltip-content="{{ctx.Locale.Tr "settings.oauth2_application_locked"}}">{{ctx.Locale.Tr "locked"}}</span>
|
2023-08-09 12:24:07 +00:00
|
|
|
{{else}}
|
|
|
|
<a href="{{$.Link}}/oauth2/{{.ID}}" class="ui primary tiny button">
|
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
|
|
|
{{svg "octicon-pencil" 16 "tw-mr-1"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.oauth2_application_edit"}}
|
2023-08-09 12:24:07 +00:00
|
|
|
</a>
|
|
|
|
<button class="ui red tiny button delete-button" data-modal-id="remove-gitea-oauth2-application"
|
|
|
|
data-url="{{$.Link}}/oauth2/{{.ID}}/delete">
|
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
|
|
|
{{svg "octicon-trash" 16 "tw-mr-1"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.delete_key"}}
|
2023-08-09 12:24:07 +00:00
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-10-09 12:07:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2023-07-03 20:38:06 +00:00
|
|
|
|
|
|
|
<div class="ui g-modal-confirm delete modal" id="remove-gitea-oauth2-application">
|
|
|
|
<div class="header">
|
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.remove_oauth2_application"}}
|
2023-07-03 20:38:06 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 08:56:50 +00:00
|
|
|
<p>{{ctx.Locale.Tr "settings.oauth2_application_remove_description"}}</p>
|
2023-07-03 20:38:06 +00:00
|
|
|
</div>
|
|
|
|
{{template "base/modal_actions_confirm" .}}
|
|
|
|
</div>
|
2022-10-09 12:07:41 +00:00
|
|
|
</div>
|
2023-07-03 20:38:06 +00:00
|
|
|
|
2024-04-29 20:53:15 +00:00
|
|
|
<div class="ui bottom attached segment">
|
2022-10-09 12:07:41 +00:00
|
|
|
<h5 class="ui top header">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.create_oauth2_application"}}
|
2022-10-09 12:07:41 +00:00
|
|
|
</h5>
|
|
|
|
<form class="ui form ignore-dirty" action="{{.Link}}/oauth2" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field {{if .Err_AppName}}error{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label for="application-name">{{ctx.Locale.Tr "settings.oauth2_application_name"}}</label>
|
2023-05-26 09:42:54 +00:00
|
|
|
<input id="application-name" name="application_name" value="{{.application_name}}" required maxlength="255">
|
2022-10-09 12:07:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_RedirectURI}}error{{end}}">
|
2023-09-25 08:56:50 +00:00
|
|
|
<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label>
|
2023-06-05 07:00:12 +00:00
|
|
|
<textarea name="redirect_uris" id="redirect-uris"></textarea>
|
2022-10-09 12:07:41 +00:00
|
|
|
</div>
|
2024-04-23 21:53:57 +00:00
|
|
|
<div class="field {{if .Err_ConfidentialClient}}error{{end}}">
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<label>{{ctx.Locale.Tr "settings.oauth2_confidential_client"}}</label>
|
2024-07-19 18:28:30 +00:00
|
|
|
<input class="disable-setting" type="checkbox" name="confidential_client" data-target="#skip-secondary-authorization" checked>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_SkipSecondaryAuthorization}}error{{end}} disabled" id="skip-secondary-authorization">
|
|
|
|
<div class="ui checkbox">
|
|
|
|
<label>{{ctx.Locale.Tr "settings.oauth2_skip_secondary_authorization"}}</label>
|
|
|
|
<input type="checkbox" name="skip_secondary_authorization">
|
2024-04-23 21:53:57 +00:00
|
|
|
</div>
|
2022-10-24 07:59:24 +00:00
|
|
|
</div>
|
2023-09-18 22:05:31 +00:00
|
|
|
<button class="ui primary button">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{ctx.Locale.Tr "settings.create_oauth2_application_button"}}
|
2022-10-09 12:07:41 +00:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|