2022-10-09 15:07:41 +03:00
<div class="ui attached segment">
2023-08-01 01:13:42 +03:00
<div class="flex-list">
<div class="flex-item">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.oauth2_application_create_description" }}
2022-10-09 15:07:41 +03:00
</div>
2023-08-01 01:13:42 +03:00
{{ range .Applications }}
2024-03-22 22:51:29 +03:00
<div class="flex-item tw-items-center">
2023-08-01 01:13:42 +03:00
<div class="flex-item-leading">
{{ svg "octicon-apps" 3 2 }}
</div>
<div class="flex-item-main">
<div class="flex-item-title"> {{ .Name }} </div>
<div class="flex-item-body">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.oauth2_client_id" }}
2023-08-01 01:13:42 +03:00
<span class="ui label"> {{ .ClientID }} </span>
</div>
</div>
2023-08-09 15:24:07 +03:00
{{ $ isBuiltin : = and $ .BuiltinApplications ( in dex $ .BuiltinApplications .ClientID ) }}
2023-08-01 01:13:42 +03:00
<div class="flex-item-trailing">
2023-08-09 15:24:07 +03:00
{{ if $ isBuiltin }}
2023-09-25 11:56:50 +03:00
<span class="ui basic label" data-tooltip-content=" {{ ctx .Locale .Tr "settings.oauth2_application_locked" }} "> {{ ctx .Locale .Tr "locked" }} </span>
2023-08-09 15:24:07 +03: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 19:42:49 +03:00
{{ svg "octicon-pencil" 1 6 "tw-mr-1" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.oauth2_application_edit" }}
2023-08-09 15:24:07 +03: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 19:42:49 +03:00
{{ svg "octicon-trash" 1 6 "tw-mr-1" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.delete_key" }}
2023-08-09 15:24:07 +03:00
</button>
{{ end }}
2022-10-09 15:07:41 +03:00
</div>
</div>
{{ end }}
</div>
2023-07-03 23:38:06 +03:00
<div class="ui g-modal-confirm delete modal" id="remove-gitea-oauth2-application">
<div class="header">
{{ svg "octicon-trash" }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.remove_oauth2_application" }}
2023-07-03 23:38:06 +03:00
</div>
<div class="content">
2023-09-25 11:56:50 +03:00
<p> {{ ctx .Locale .Tr "settings.oauth2_application_remove_description" }} </p>
2023-07-03 23:38:06 +03:00
</div>
{{ template "base/modal_actions_confirm" . }}
</div>
2022-10-09 15:07:41 +03:00
</div>
2023-07-03 23:38:06 +03:00
2022-10-09 15:07:41 +03:00
<div class="ui attached bottom segment">
<h5 class="ui top header">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.create_oauth2_application" }}
2022-10-09 15:07:41 +03: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 11:56:50 +03:00
<label for="application-name"> {{ ctx .Locale .Tr "settings.oauth2_application_name" }} </label>
2023-05-26 12:42:54 +03:00
<input id="application-name" name="application_name" value=" {{ .application_name }} " required maxlength="255">
2022-10-09 15:07:41 +03:00
</div>
<div class="field {{ if .Err_RedirectURI }} error {{ end }} ">
2023-09-25 11:56:50 +03:00
<label for="redirect-uris"> {{ ctx .Locale .Tr "settings.oauth2_redirect_uris" }} </label>
2023-06-05 10:00:12 +03:00
<textarea name="redirect_uris" id="redirect-uris"></textarea>
2022-10-09 15:07:41 +03:00
</div>
2024-04-24 00:53:57 +03:00
<div class="field {{ if .Err_ConfidentialClient }} error {{ end }} ">
<div class="ui checkbox">
<label> {{ ctx .Locale .Tr "settings.oauth2_confidential_client" }} </label>
<input type="checkbox" name="confidential_client" checked>
</div>
2022-10-24 10:59:24 +03:00
</div>
2023-09-19 01:05:31 +03:00
<button class="ui primary button">
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "settings.create_oauth2_application_button" }}
2022-10-09 15:07:41 +03:00
</button>
</form>
</div>