2017-04-26 18:40:43 +05:30
<h4 class="ui top attached header">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "settings.manage_ssh_keys" }}
2017-11-21 11:13:00 +05:30
<div class="ui right">
2022-08-31 21:28:54 +05:30
{{ if not .DisableSSH }}
2023-03-14 09:04:09 +05:30
<button id="add-ssh-button" class="ui primary tiny show-panel button" data-panel="#add-ssh-key-panel">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "settings.add_key" }}
2023-03-14 09:04:09 +05:30
</button>
2021-10-28 16:25:48 +05:30
{{ else }}
2023-03-14 09:04:09 +05:30
<button class="ui primary tiny button disabled"> {{ .locale .Tr "settings.ssh_disabled" }} </button>
2021-10-28 16:25:48 +05:30
{{ end }}
2017-11-21 11:13:00 +05:30
</div>
2017-04-26 18:40:43 +05:30
</h4>
<div class="ui attached segment">
2023-02-19 09:36:14 +05:30
<div class=" {{ if not .HasSSHError }} gt-hidden {{ end }} gt-mb-4" id="add-ssh-key-panel">
2021-10-28 16:25:48 +05:30
<form class="ui form" action=" {{ .Link }} " method="post">
{{ .CsrfTokenHtml }}
<div class="field {{ if .Err_Title }} error {{ end }} ">
2022-06-28 02:28:46 +05:30
<label for="title"> {{ .locale .Tr "settings.key_name" }} </label>
2021-10-28 16:25:48 +05:30
<input id="ssh-key-title" name="title" value=" {{ .title }} " autofocus required>
</div>
<div class="field {{ if .Err_Content }} error {{ end }} ">
2022-06-28 02:28:46 +05:30
<label for="content"> {{ .locale .Tr "settings.key_content" }} </label>
<textarea id="ssh-key-content" name="content" class="js-quick-submit" placeholder=" {{ .locale .Tr "settings.key_content_ssh_placeholder" }} " required> {{ .content }} </textarea>
2021-10-28 16:25:48 +05:30
</div>
<input name="type" type="hidden" value="ssh">
<button class="ui green button">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "settings.add_key" }}
2021-10-28 16:25:48 +05:30
</button>
<button id="cancel-ssh-button" class="ui hide-panel button" data-panel="#add-ssh-key-panel">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "cancel" }}
2021-10-28 16:25:48 +05:30
</button>
</form>
</div>
2023-02-13 23:29:59 +05:30
<div class="ui key list gt-mt-0">
2017-11-21 11:13:00 +05:30
<div class="item">
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "settings.ssh_desc" }}
2017-11-21 11:13:00 +05:30
</div>
2020-12-26 09:54:47 +05:30
{{ range $ in dex , $ key : = .Keys }}
2017-11-21 11:13:00 +05:30
<div class="item">
2020-12-26 09:54:47 +05:30
<div class="right floated content">
2022-06-28 02:28:46 +05:30
<button class="ui red tiny button delete-button {{ if in dex $ .ExternalKeys $ in dex }} disabled {{ end }} " data-modal-id="delete-ssh" data-url=" {{ $ .Link }} /delete?type=ssh" data-id=" {{ .ID }} " {{ if in dex $ .ExternalKeys $ in dex }} title=" {{ $ .locale .Tr "settings.ssh_externally_managed" }} " {{ end }} >
{{ $ .locale .Tr "settings.delete_key" }}
2020-12-26 09:54:47 +05:30
</button>
2021-12-19 11:07:18 +05:30
{{ if and ( not .Verified ) ( ne $ .VerifyingFingerprint .Fingerprint ) }}
2023-03-23 22:22:20 +05:30
<a class="ui primary tiny button" href=" {{ $ .Link }} ?verify_ssh= {{ .Fingerprint }} "> {{ $ .locale .Tr "settings.ssh_key_verify" }} </a>
2021-12-19 11:07:18 +05:30
{{ end }}
2020-12-26 09:54:47 +05:30
</div>
<div class="left floated content">
2023-03-23 08:54:16 +05:30
<span class="tooltip text {{ if .HasRecentActivity }} green {{ end }} " {{ if .HasRecentActivity }} data-content=" {{ $ .locale .Tr "settings.key_state_desc" }} " {{ end }} > {{ svg "octicon-key" 3 2 }} </span>
2020-12-26 09:54:47 +05:30
</div>
<div class="content">
2021-12-19 11:07:18 +05:30
{{ if .Verified }}
2023-03-17 10:42:40 +05:30
<span class="tooltip" data-content=" {{ $ .locale .Tr "settings.ssh_key_verified_long" }} "> {{ svg "octicon-verified" }} <strong> {{ $ .locale .Tr "settings.ssh_key_verified" }} </strong></span>
2021-12-19 11:07:18 +05:30
{{ end }}
2020-12-26 09:54:47 +05:30
<strong> {{ .Name }} </strong>
<div class="print meta">
{{ .Fingerprint }}
</div>
<div class="activity meta">
2022-10-17 09:38:21 +05:30
<i> {{ $ .locale .Tr "settings.add_on" }} <span><time data-format="short-date" datetime=" {{ .CreatedUnix .FormatLong }} "> {{ .CreatedUnix .FormatShort }} </time></span> — {{ svg "octicon-info" }} {{ if .HasUsed }} {{ $ .locale .Tr "settings.last_used" }} <span {{ if .HasRecentActivity }} class="green" {{ end }} ><time data-format="short-date" datetime=" {{ .UpdatedUnix .FormatLong }} "> {{ .UpdatedUnix .FormatShort }} </time></span> {{ else }} {{ $ .locale .Tr "settings.no_activity" }} {{ end }} </i>
2020-12-26 09:54:47 +05:30
</div>
</div>
2017-11-21 11:13:00 +05:30
</div>
2021-12-19 11:07:18 +05:30
{{ if and ( not .Verified ) ( eq $ .VerifyingFingerprint .Fingerprint ) }}
<div class="ui segment">
2022-06-28 02:28:46 +05:30
<h4> {{ $ .locale .Tr "settings.ssh_token_required" }} </h4>
2021-12-19 11:07:18 +05:30
<form class="ui form {{ if $ .HasSSHVerifyError }} error {{ end }} " action=" {{ $ .Link }} " method="post">
{{ $ .CsrfTokenHtml }}
<input type="hidden" name="title" value="none">
<input type="hidden" name="content" value=" {{ .Content }} ">
<input type="hidden" name="fingerprint" value=" {{ .Fingerprint }} ">
<div class="field">
2022-06-28 02:28:46 +05:30
<label for="token"> {{ $ .locale .Tr "settings.ssh_token" }} </label>
2021-12-19 11:07:18 +05:30
<input readonly="" value=" {{ $ .TokenToSign }} ">
<div class="help">
2022-06-28 02:28:46 +05:30
<p> {{ $ .locale .Tr "settings.ssh_token_help" }} </p>
2022-06-24 15:41:13 +05:30
<p><code> {{ printf "echo -n '%s' | ssh-keygen -Y sign -n gitea -f /path_to_your_privkey" $ .TokenToSign }} </code></p>
2021-12-19 11:07:18 +05:30
</div>
<br>
</div>
<div class="field">
2022-06-28 02:28:46 +05:30
<label for="signature"> {{ $ .locale .Tr "settings.ssh_token_signature" }} </label>
<textarea id="ssh-key-signature" name="signature" class="js-quick-submit" placeholder=" {{ $ .locale .Tr "settings.key_signature_ssh_placeholder" }} " required> {{ $ .signature }} </textarea>
2021-12-19 11:07:18 +05:30
</div>
<input name="type" type="hidden" value="verify_ssh">
<button class="ui green button">
2022-06-28 02:28:46 +05:30
{{ $ .locale .Tr "settings.ssh_key_verify" }}
2021-12-19 11:07:18 +05:30
</button>
<a class="ui red button" href=" {{ $ .Link }} ">
2022-06-28 02:28:46 +05:30
{{ $ .locale .Tr "settings.cancel" }}
2021-12-19 11:07:18 +05:30
</a>
</form>
</div>
{{ end }}
2017-11-21 11:13:00 +05:30
{{ end }}
</div>
2017-04-26 18:40:43 +05:30
</div>
<br>
2022-06-28 02:28:46 +05:30
<p> {{ .locale .Tr "settings.ssh_helper" "https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/connecting-to-github-with-ssh" "https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/troubleshooting-ssh" | Str2html }} </p>
2017-04-26 18:40:43 +05:30
<div class="ui small basic delete modal" id="delete-ssh">
<div class="ui icon header">
2021-03-22 09:34:19 +05:30
{{ svg "octicon-trash" }}
2022-06-28 02:28:46 +05:30
{{ .locale .Tr "settings.ssh_key_deletion" }}
2017-04-26 18:40:43 +05:30
</div>
<div class="content">
2022-06-28 02:28:46 +05:30
<p> {{ .locale .Tr "settings.ssh_key_deletion_desc" }} </p>
2017-04-26 18:40:43 +05:30
</div>
{{ template "base/delete_modal_actions" . }}
</div>