mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 18:31:36 +00:00
64 lines
2.4 KiB
PHP
64 lines
2.4 KiB
PHP
<x-server-layout :server="$server">
|
|
<x-slot name="pageTitle">{{ __("Settings") }}</x-slot>
|
|
|
|
@include("server-settings.partials.server-details")
|
|
|
|
<x-card>
|
|
<x-slot name="title">{{ __("Public Key") }}</x-slot>
|
|
<x-slot name="description">
|
|
{{ __("Your server's public key is here") }}
|
|
</x-slot>
|
|
<div class="mt-5">
|
|
<div>
|
|
<div class="flex items-center justify-between">
|
|
<x-input-label for="pk">
|
|
{{ __("Public Key") }}
|
|
</x-input-label>
|
|
<x-input-label
|
|
class="cursor-pointer"
|
|
x-data="{ copied: false }"
|
|
id="public-key"
|
|
data-public-key="{{ $server->public_key }}"
|
|
>
|
|
<div x-show="copied" class="flex items-center">
|
|
{{ __("Copied") }}
|
|
</div>
|
|
<div
|
|
x-show="!copied"
|
|
x-on:click="
|
|
window.copyToClipboard(
|
|
document.getElementById('public-key').getAttribute('data-public-key'),
|
|
)
|
|
copied = true
|
|
setTimeout(() => {
|
|
copied = false
|
|
}, 2000)
|
|
"
|
|
>
|
|
{{ __("Copy") }}
|
|
</div>
|
|
</x-input-label>
|
|
</div>
|
|
<x-textarea id="pk" name="pk" class="mt-1 h-48" disabled>
|
|
{{ $server->public_key }}
|
|
</x-textarea>
|
|
</div>
|
|
</div>
|
|
</x-card>
|
|
|
|
@include("server-settings.partials.edit-server")
|
|
|
|
<x-card>
|
|
<x-slot name="title">{{ __("Delete Server") }}</x-slot>
|
|
<x-slot name="description">
|
|
{{ __("Permanently delete the server.") }}
|
|
</x-slot>
|
|
<p>
|
|
{{ __("Once your server is deleted, all of its resources and data will be permanently deleted and can't be restored") }}
|
|
</p>
|
|
<div class="mt-5">
|
|
@include("servers.partials.delete-server")
|
|
</div>
|
|
</x-card>
|
|
</x-server-layout>
|