coolify/resources/views/livewire/security/private-key/create.blade.php

21 lines
997 B
PHP
Raw Normal View History

2023-05-03 12:38:57 +02:00
<div>
2024-01-23 17:13:23 +01:00
<h2>Private Key</h2>
2024-01-07 16:23:41 +01:00
<div class="subtitle ">Private Keys are used to connect to your servers without passwords.</div>
2023-09-15 15:39:25 +02:00
<x-forms.button class="mb-4" wire:click="generateNewKey">Generate new SSH key for me</x-forms.button>
2023-12-07 19:06:32 +01:00
<form class="flex flex-col gap-2" wire:submit='createPrivateKey'>
2023-06-07 16:47:10 +02:00
<div class="flex gap-2">
<x-forms.input id="name" label="Name" required />
<x-forms.input id="description" label="Description" />
</div>
2023-09-15 11:55:58 +02:00
<x-forms.textarea realtimeValidation id="value" rows="10"
placeholder="-----BEGIN OPENSSH PRIVATE KEY-----" label="Private Key" required />
2023-09-15 15:39:25 +02:00
<x-forms.input id="publicKey" readonly label="Public Key" />
<span class="pt-2 pb-4 font-bold text-warning">ACTION REQUIRED: Copy the 'Public Key' to your server's
2023-09-15 11:55:58 +02:00
~/.ssh/authorized_keys
2023-09-15 15:39:25 +02:00
file</span>
2023-06-08 11:43:14 +02:00
<x-forms.button type="submit">
2023-06-07 16:47:10 +02:00
Save Private Key
2023-05-25 14:05:44 +02:00
</x-forms.button>
2023-05-03 12:38:57 +02:00
</form>
</div>