2017-04-26 15:10:43 +02:00
|
|
|
<h4 class="ui top attached header">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.manage_ssh_keys"}}
|
2017-11-21 06:43:00 +01:00
|
|
|
<div class="ui right">
|
2023-09-07 03:13:11 +02:00
|
|
|
<button id="add-ssh-button" class="ui primary tiny show-panel toggle button" data-panel="#add-ssh-key-panel">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.add_key"}}
|
2023-04-10 19:22:51 +02:00
|
|
|
</button>
|
2017-11-21 06:43:00 +01:00
|
|
|
</div>
|
2017-04-26 15:10:43 +02:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2024-03-24 19:23:38 +01:00
|
|
|
<div class="{{if not .HasSSHError}}tw-hidden{{end}} tw-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}}">
|
2024-02-16 14:59:48 +01:00
|
|
|
<label for="ssh-key-title">{{ctx.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}}">
|
2024-02-16 14:59:48 +01:00
|
|
|
<label for="ssh-key-content">{{ctx.Locale.Tr "settings.key_content"}}</label>
|
2023-09-25 10:56:50 +02:00
|
|
|
<textarea id="ssh-key-content" name="content" class="js-quick-submit" placeholder="{{ctx.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">
|
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.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">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "cancel"}}
|
2021-10-28 12:55:48 +02:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div id="keys-ssh" class="flex-list">
|
|
|
|
<div class="flex-item">
|
2023-09-07 03:13:11 +02:00
|
|
|
<p>
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.ssh_desc"}}<br>
|
2024-03-10 09:51:19 +01:00
|
|
|
{{ctx.Locale.Tr "settings.ssh_helper" "https://docs.codeberg.org/security/ssh-key/" "https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/troubleshooting-ssh"}}
|
2023-09-07 03:13:11 +02:00
|
|
|
</p>
|
2017-11-21 06:43:00 +01:00
|
|
|
</div>
|
2023-04-10 19:22:51 +02:00
|
|
|
{{if .DisableSSH}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.ssh_signonly"}}
|
2023-04-10 19:22:51 +02:00
|
|
|
</div>
|
|
|
|
{{end}}
|
2020-12-26 05:24:47 +01:00
|
|
|
{{range $index, $key := .Keys}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item">
|
|
|
|
<div class="flex-item-leading">
|
2023-09-25 10:56:50 +02:00
|
|
|
<span class="text {{if .HasRecentActivity}}green{{end}}" {{if .HasRecentActivity}}data-tooltip-content="{{ctx.Locale.Tr "settings.key_state_desc"}}"{{end}}>{{svg "octicon-key" 32}}</span>
|
2020-12-26 05:24:47 +01:00
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-main">
|
2021-12-19 06:37:18 +01:00
|
|
|
{{if .Verified}}
|
2023-09-25 10:56:50 +02:00
|
|
|
<div class="flex-item-title flex-text-block" data-tooltip-content="{{ctx.Locale.Tr "settings.ssh_key_verified_long"}}">{{svg "octicon-verified"}}{{ctx.Locale.Tr "settings.ssh_key_verified"}}</div>
|
2021-12-19 06:37:18 +01:00
|
|
|
{{end}}
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-title">{{.Name}}</div>
|
|
|
|
<div class="flex-item-body">
|
2020-12-26 05:24:47 +01:00
|
|
|
{{.Fingerprint}}
|
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-body">
|
2024-04-29 16:26:26 +02:00
|
|
|
<p>{{ctx.Locale.Tr "settings.added_on" (DateTime "short" .CreatedUnix)}} — {{svg "octicon-info"}} {{if .HasUsed}}{{ctx.Locale.Tr "settings.last_used"}} <span {{if .HasRecentActivity}}class="text green"{{end}}>{{DateTime "short" .UpdatedUnix}}</span>{{else}}{{ctx.Locale.Tr "settings.no_activity"}}{{end}}</p>
|
2020-12-26 05:24:47 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-08-01 00:13:42 +02:00
|
|
|
<div class="flex-item-trailing">
|
2023-09-25 10:56:50 +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="{{ctx.Locale.Tr "settings.ssh_externally_managed"}}"{{end}}>
|
|
|
|
{{ctx.Locale.Tr "settings.delete_key"}}
|
2023-08-01 00:13:42 +02:00
|
|
|
</button>
|
|
|
|
{{if and (not .Verified) (ne $.VerifyingFingerprint .Fingerprint)}}
|
2024-03-20 06:56:42 +01:00
|
|
|
<a class="ui primary tiny button" href="?verify_ssh={{.Fingerprint}}">{{ctx.Locale.Tr "settings.ssh_key_verify"}}</a>
|
2023-08-01 00:13:42 +02:00
|
|
|
{{end}}
|
|
|
|
</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">
|
2023-09-25 10:56:50 +02:00
|
|
|
<h4>{{ctx.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">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="token">{{ctx.Locale.Tr "settings.ssh_token"}}</label>
|
2021-12-19 06:37:18 +01:00
|
|
|
<input readonly="" value="{{$.TokenToSign}}">
|
|
|
|
<div class="help">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "settings.ssh_token_help"}}</p>
|
2023-12-18 15:53:04 +01:00
|
|
|
<p><code>{{printf "echo -n '%s' | ssh-keygen -Y sign -n gitea -f /path_to_PrivateKey_or_RelatedPublicKey" $.TokenToSign}}</code></p>
|
2021-12-19 06:37:18 +01:00
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
2023-09-25 10:56:50 +02:00
|
|
|
<label for="signature">{{ctx.Locale.Tr "settings.ssh_token_signature"}}</label>
|
|
|
|
<textarea id="ssh-key-signature" name="signature" class="js-quick-submit" placeholder="{{ctx.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">
|
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.ssh_key_verify"}}
|
2021-12-19 06:37:18 +01:00
|
|
|
</button>
|
|
|
|
<a class="ui red button" href="{{$.Link}}">
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.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>
|
2023-09-07 03:13:11 +02:00
|
|
|
<div class="ui g-modal-confirm delete modal" id="delete-ssh">
|
|
|
|
<div class="header">
|
|
|
|
{{svg "octicon-trash"}}
|
2023-09-25 10:56:50 +02:00
|
|
|
{{ctx.Locale.Tr "settings.ssh_key_deletion"}}
|
2023-09-07 03:13:11 +02:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
2023-09-25 10:56:50 +02:00
|
|
|
<p>{{ctx.Locale.Tr "settings.ssh_key_deletion_desc"}}</p>
|
2023-09-07 03:13:11 +02:00
|
|
|
</div>
|
|
|
|
{{template "base/modal_actions_confirm" .}}
|
2017-04-26 15:10:43 +02:00
|
|
|
</div>
|
|
|
|
</div>
|