2023-06-14 19:45:13 +02:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.edit_oauth2_application"}}
|
2023-06-14 19:45:13 +02:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "settings.oauth2_application_create_description"}}</p>
|
2023-06-14 19:45:13 +02:00
|
|
|
</div>
|
|
|
|
<div class="ui attached segment form ignore-dirty">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="client-id">{{ctx.Locale.Tr "settings.oauth2_client_id"}}</label>
|
2023-06-14 19:45:13 +02:00
|
|
|
<input id="client-id" readonly value="{{.App.ClientID}}">
|
2022-10-09 14:07:41 +02:00
|
|
|
</div>
|
2023-06-14 19:45:13 +02:00
|
|
|
{{if .ClientSecret}}
|
2022-10-09 14:07:41 +02:00
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="client-secret">{{ctx.Locale.Tr "settings.oauth2_client_secret"}}</label>
|
2023-06-14 19:45:13 +02:00
|
|
|
<input id="client-secret" type="text" readonly value="{{.ClientSecret}}">
|
2022-10-09 14:07:41 +02:00
|
|
|
</div>
|
2023-06-14 19:45:13 +02:00
|
|
|
{{else}}
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="client-secret">{{ctx.Locale.Tr "settings.oauth2_client_secret"}}</label>
|
2023-06-14 19:45:13 +02:00
|
|
|
<input id="client-secret" type="password" readonly value="averysecuresecret">
|
2022-10-09 14:07:41 +02:00
|
|
|
</div>
|
2023-06-14 19:45:13 +02:00
|
|
|
{{end}}
|
|
|
|
<div class="item">
|
|
|
|
<!-- TODO add regenerate secret functionality */ -->
|
|
|
|
<form class="ui form ignore-dirty" action="{{.FormActionPath}}/regenerate_secret" method="post">
|
2022-10-09 14:07:41 +02:00
|
|
|
{{.CsrfTokenHtml}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.oauth2_regenerate_secret_hint"}}
|
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
|
|
|
<button class="ui mini button tw-ml-2" type="submit">{{ctx.Locale.Tr "settings.oauth2_regenerate_secret"}}</button>
|
2022-10-09 14:07:41 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-14 19:45:13 +02:00
|
|
|
<div class="ui attached bottom segment">
|
|
|
|
<form class="ui form ignore-dirty" action="{{.FormActionPath}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field {{if .Err_AppName}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="application-name">{{ctx.Locale.Tr "settings.oauth2_application_name"}}</label>
|
2023-06-14 19:45:13 +02:00
|
|
|
<input id="application-name" value="{{.App.Name}}" name="application_name" required maxlength="255">
|
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_RedirectURI}}error{{end}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="redirect-uris">{{ctx.Locale.Tr "settings.oauth2_redirect_uris"}}</label>
|
2023-06-14 19:45:13 +02:00
|
|
|
<textarea name="redirect_uris" id="redirect-uris" required>{{StringUtils.Join .App.RedirectURIs "\n"}}</textarea>
|
|
|
|
</div>
|
2024-04-23 23:53:57 +02: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" {{if .App.ConfidentialClient}}checked{{end}}>
|
|
|
|
</div>
|
2023-06-14 19:45:13 +02:00
|
|
|
</div>
|
2023-09-19 00:05:31 +02:00
|
|
|
<button class="ui primary button">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.save_application"}}
|
2023-06-14 19:45:13 +02:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|