2017-04-26 15:10:43 +02:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "settings.manage_ssh_keys"}}
|
2017-11-21 06:43:00 +01:00
|
|
|
<div class="ui right">
|
2023-04-10 19:22:51 +02:00
|
|
|
<button id="add-ssh-button" class="ui primary tiny show-panel button" data-panel="#add-ssh-key-panel">
|
|
|
|
{{.locale.Tr "settings.add_key"}}
|
|
|
|
</button>
|
2017-11-21 06:43:00 +01:00
|
|
|
</div>
|
2017-04-26 15:10:43 +02:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2023-02-19 05:06:14 +01:00
|
|
|
<div class="{{if not .HasSSHError}}gt-hidden{{end}} gt-mb-4" id="add-ssh-key-panel">
|
2021-10-28 12:55:48 +02:00
|
|
|
<form class="ui form" action="{{.Link}}" method="post">
|
|
|
|
{{.CsrfTokenHtml}}
|
|
|
|
<div class="field {{if .Err_Title}}error{{end}}">
|
2022-06-27 22:58:46 +02:00
|
|
|
<label for="title">{{.locale.Tr "settings.key_name"}}</label>
|
2023-05-26 11:42:54 +02:00
|
|
|
<input id="ssh-key-title" name="title" value="{{.title}}" autofocus required maxlength="50">
|
2021-10-28 12:55:48 +02:00
|
|
|
</div>
|
|
|
|
<div class="field {{if .Err_Content}}error{{end}}">
|
2022-06-27 22:58:46 +02:00
|
|
|
<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 12:55:48 +02:00
|
|
|
</div>
|
|
|
|
<input name="type" type="hidden" value="ssh">
|
|
|
|
<button class="ui green button">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "settings.add_key"}}
|
2021-10-28 12:55:48 +02:00
|
|
|
</button>
|
|
|
|
<button id="cancel-ssh-button" class="ui hide-panel button" data-panel="#add-ssh-key-panel">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "cancel"}}
|
2021-10-28 12:55:48 +02:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-02-13 18:59:59 +01:00
|
|
|
<div class="ui key list gt-mt-0">
|
2017-11-21 06:43:00 +01:00
|
|
|
<div class="item">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "settings.ssh_desc"}}
|
2017-11-21 06:43:00 +01:00
|
|
|
</div>
|
2023-04-10 19:22:51 +02:00
|
|
|
{{if .DisableSSH}}
|
|
|
|
<div class="item">
|
|
|
|
{{.locale.Tr "settings.ssh_signonly"}}
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-12-26 05:24:47 +01:00
|
|
|
{{range $index, $key := .Keys}}
|
2017-11-21 06:43:00 +01:00
|
|
|
<div class="item">
|
2020-12-26 05:24:47 +01:00
|
|
|
<div class="right floated content">
|
2022-06-27 22:58:46 +02:00
|
|
|
<button class="ui red tiny button delete-button{{if index $.ExternalKeys $index}} disabled{{end}}" data-modal-id="delete-ssh" data-url="{{$.Link}}/delete?type=ssh" data-id="{{.ID}}"{{if index $.ExternalKeys $index}} title="{{$.locale.Tr "settings.ssh_externally_managed"}}"{{end}}>
|
|
|
|
{{$.locale.Tr "settings.delete_key"}}
|
2020-12-26 05:24:47 +01:00
|
|
|
</button>
|
2021-12-19 06:37:18 +01:00
|
|
|
{{if and (not .Verified) (ne $.VerifyingFingerprint .Fingerprint)}}
|
2023-03-23 17:52:20 +01:00
|
|
|
<a class="ui primary tiny button" href="{{$.Link}}?verify_ssh={{.Fingerprint}}">{{$.locale.Tr "settings.ssh_key_verify"}}</a>
|
2021-12-19 06:37:18 +01:00
|
|
|
{{end}}
|
|
|
|
|
2020-12-26 05:24:47 +01:00
|
|
|
</div>
|
|
|
|
<div class="left floated content">
|
2023-03-24 11:35:38 +01:00
|
|
|
<span class="text {{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-tooltip-content="{{$.locale.Tr "settings.key_state_desc"}}"{{end}}>{{svg "octicon-key" 32}}</span>
|
2020-12-26 05:24:47 +01:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2021-12-19 06:37:18 +01:00
|
|
|
{{if .Verified}}
|
2023-03-24 11:35:38 +01:00
|
|
|
<span data-tooltip-content="{{$.locale.Tr "settings.ssh_key_verified_long"}}">{{svg "octicon-verified"}} <strong>{{$.locale.Tr "settings.ssh_key_verified"}}</strong></span>
|
2021-12-19 06:37:18 +01:00
|
|
|
{{end}}
|
2020-12-26 05:24:47 +01:00
|
|
|
<strong>{{.Name}}</strong>
|
|
|
|
<div class="print meta">
|
|
|
|
{{.Fingerprint}}
|
|
|
|
</div>
|
|
|
|
<div class="activity meta">
|
2023-05-19 11:20:18 +02:00
|
|
|
<i>{{$.locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix) | Safe}} — {{svg "octicon-info"}} {{if .HasUsed}}{{$.locale.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="green"{{end}}>{{DateTime "short" .UpdatedUnix}}</span>{{else}}{{$.locale.Tr "settings.no_activity"}}{{end}}</i>
|
2020-12-26 05:24:47 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-21 06:43:00 +01:00
|
|
|
</div>
|
2021-12-19 06:37:18 +01:00
|
|
|
{{if and (not .Verified) (eq $.VerifyingFingerprint .Fingerprint)}}
|
|
|
|
<div class="ui segment">
|
2022-06-27 22:58:46 +02:00
|
|
|
<h4>{{$.locale.Tr "settings.ssh_token_required"}}</h4>
|
2021-12-19 06:37:18 +01:00
|
|
|
<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-27 22:58:46 +02:00
|
|
|
<label for="token">{{$.locale.Tr "settings.ssh_token"}}</label>
|
2021-12-19 06:37:18 +01:00
|
|
|
<input readonly="" value="{{$.TokenToSign}}">
|
|
|
|
<div class="help">
|
2022-06-27 22:58:46 +02:00
|
|
|
<p>{{$.locale.Tr "settings.ssh_token_help"}}</p>
|
2022-06-24 12:11:13 +02:00
|
|
|
<p><code>{{printf "echo -n '%s' | ssh-keygen -Y sign -n gitea -f /path_to_your_privkey" $.TokenToSign}}</code></p>
|
2021-12-19 06:37:18 +01:00
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2022-06-27 22:58:46 +02:00
|
|
|
<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 06:37:18 +01:00
|
|
|
</div>
|
|
|
|
<input name="type" type="hidden" value="verify_ssh">
|
|
|
|
<button class="ui green button">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "settings.ssh_key_verify"}}
|
2021-12-19 06:37:18 +01:00
|
|
|
</button>
|
|
|
|
<a class="ui red button" href="{{$.Link}}">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{$.locale.Tr "settings.cancel"}}
|
2021-12-19 06:37:18 +01:00
|
|
|
</a>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
2017-11-21 06:43:00 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
2017-04-26 15:10:43 +02:00
|
|
|
</div>
|
|
|
|
<br>
|
2022-06-27 22:58:46 +02:00
|
|
|
<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 15:10:43 +02:00
|
|
|
|
2023-04-24 13:08:59 +02:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="delete-ssh">
|
2023-04-23 11:24:19 +02:00
|
|
|
<div class="header">
|
2021-03-22 05:04:19 +01:00
|
|
|
{{svg "octicon-trash"}}
|
2022-06-27 22:58:46 +02:00
|
|
|
{{.locale.Tr "settings.ssh_key_deletion"}}
|
2017-04-26 15:10:43 +02:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2022-06-27 22:58:46 +02:00
|
|
|
<p>{{.locale.Tr "settings.ssh_key_deletion_desc"}}</p>
|
2017-04-26 15:10:43 +02:00
|
|
|
</div>
|
2023-04-23 11:24:19 +02:00
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2017-04-26 15:10:43 +02:00
|
|
|
</div>
|