Replace all Coolify branding with MapleDeploy across 111 files: - Logo, favicon, and color palette (Canadian red scale, stone greys) - Fonts: Overlock for headings, Inter for body (self-hosted woff2/ttf) - All ~70 page titles updated to "| MapleDeploy" - Auth pages, navbar, footer, email templates, settings, boarding flow - Remove Hetzner provider, Coolify Cloud upsells, sponsorship popups - Disable telemetry (Sentry DSN null, undead.coolify.io ping disabled) - Point auto-update to MapleDeploy Forgejo registry image - Redirect help/support links to mapledeploy.ca/contact - Add AGPL source code link to Forgejo repo in navbar - OpenAPI docs rebranded to MapleDeploy
55 lines
No EOL
3.1 KiB
PHP
55 lines
No EOL
3.1 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
{{ data_get_str($server, 'name')->limit(10) }} > Terminal Access | MapleDeploy
|
|
</x-slot>
|
|
<livewire:server.navbar :server="$server" />
|
|
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'general' }" class="flex flex-col h-full gap-8 sm:flex-row">
|
|
<x-server.sidebar-security :server="$server" :parameters="$parameters" />
|
|
<div class="w-full">
|
|
<div>
|
|
<div class="flex items-center gap-2">
|
|
<h2>Terminal Access</h2>
|
|
<x-helper
|
|
helper="Decide if users (including admins and the owner) can access the terminal for this server and its containers from the dashboard.<br/>
|
|
Only team administrators and owners can change this setting."/>
|
|
@if (auth()->user()->isAdmin())
|
|
<div wire:key="terminal-access-change-{{ $isTerminalEnabled }}">
|
|
<x-modal-confirmation title="Confirm Terminal Access Change?"
|
|
temporaryDisableTwoStepConfirmation
|
|
buttonTitle="{{ $isTerminalEnabled ? 'Disable Terminal' : 'Enable Terminal' }}"
|
|
submitAction="toggleTerminal" :actions="[
|
|
$isTerminalEnabled
|
|
? 'This will disable terminal access for this server and all its containers.'
|
|
: 'This will enable terminal access for this server and all its containers.',
|
|
$isTerminalEnabled
|
|
? 'Users will no longer be able to access terminal views from the UI.'
|
|
: 'Users will be able to access terminal views from the UI.',
|
|
'This change will take effect immediately.',
|
|
]" confirmationText="{{ $server->name }}"
|
|
shortConfirmationLabel="Server Name"
|
|
step3ButtonText="{{ $isTerminalEnabled ? 'Disable Terminal' : 'Enable Terminal' }}"
|
|
isHighlightedButton>
|
|
</x-modal-confirmation>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<div class="mb-4">Manage terminal access to this server and its containers.</div>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-2">
|
|
<h3>Terminal Status:</h3>
|
|
@if ($isTerminalEnabled)
|
|
<span
|
|
class="px-2 py-1 text-xs font-semibold text-green-800 bg-green-100 rounded dark:text-green-100 dark:bg-green-800">
|
|
Operational
|
|
</span>
|
|
@else
|
|
<span
|
|
class="px-2 py-1 text-xs font-semibold text-red-800 bg-red-100 rounded dark:text-red-100 dark:bg-red-800">
|
|
Disabled
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |