updates
This commit is contained in:
@@ -1,12 +1,6 @@
|
||||
<x-layout>
|
||||
<h1>Command Center</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Execute commands on your servers without leaving the browser.
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Execute commands on your servers without leaving the browser.</div>
|
||||
@if ($servers->count() > 0)
|
||||
<livewire:run-command :servers="$servers" />
|
||||
@else
|
||||
|
||||
@@ -1,13 +1,6 @@
|
||||
<div class="pb-6">
|
||||
<h1>Server</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
{{ data_get($server, 'name') }}
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">{{ data_get($server, 'name') }}</div>
|
||||
<nav class="flex items-center h-12 gap-4 py-2 border-b-2 border-solid border-coolgray-200">
|
||||
<a class="{{ request()->routeIs('server.show') ? 'text-white' : '' }}"
|
||||
href="{{ route('server.show', [
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
<div class="pb-6">
|
||||
<h1>Settings</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Instance wide settings for Coolify.
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Instance wide settings for Coolify.</div>
|
||||
<nav class="flex items-center gap-4 py-2 border-b-2 border-solid border-coolgray-200">
|
||||
<a class="{{ request()->routeIs('settings.configuration') ? 'text-white' : '' }}"
|
||||
href="{{ route('settings.configuration') }}">
|
||||
|
||||
@@ -1,13 +1,6 @@
|
||||
<x-layout>
|
||||
<h1>Dashboard</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Something (more) useful will be here.
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Something (more) useful will be here.</div>
|
||||
<div class="w-full rounded shadow stats stats-vertical lg:stats-horizontal">
|
||||
<div class="stat">
|
||||
<div class="stat-title">Servers</div>
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
<div>
|
||||
<h1>Create a new Destination</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Destinations are used to separate resources in a server.
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Destinations are used to segregate resources by network.</div>
|
||||
<form class="flex flex-col gap-4" wire:submit.prevent='submit'>
|
||||
<div class="flex gap-2">
|
||||
<x-forms.input id="name" label="Name" required />
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
<div>
|
||||
<h1>Create a new Server</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Servers are the main blocks of your infrastructure.
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Servers are the main blocks of your infrastructure.</div>
|
||||
<form class="flex flex-col gap-2" wire:submit.prevent='submit'>
|
||||
<div class="flex gap-2">
|
||||
<x-forms.input id="name" label="Name" required />
|
||||
|
||||
@@ -33,7 +33,8 @@
|
||||
</div>
|
||||
@else
|
||||
<div>
|
||||
<h2>Select a Proxy</h2>
|
||||
<h2>Proxy</h2>
|
||||
|
||||
<x-forms.button wire:click="setProxy('{{ \App\Enums\ProxyTypes::TRAEFIK_V2 }}')">Traefik v2
|
||||
</x-forms.button>
|
||||
</div>
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
<x-layout>
|
||||
<h1>Create a new Private Key</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Private Keys are used for connection to servers.
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Private Keys are used for connection to servers.</div>
|
||||
<livewire:private-key.create />
|
||||
</x-layout>
|
||||
|
||||
@@ -1,13 +1,6 @@
|
||||
<x-layout>
|
||||
<h1>Profile</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
Your user profile settings.
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">Your user profile settings.</div>
|
||||
<livewire:profile.form :request="$request" />
|
||||
<h3 class="py-4">Two-factor Authentication</h3>
|
||||
@if (session('status') == 'two-factor-authentication-enabled')
|
||||
|
||||
@@ -3,13 +3,7 @@
|
||||
<h1>Environments</h1>
|
||||
<livewire:project.delete-project :project_id="$project->id" :resource_count="$project->applications->count()" />
|
||||
</div>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
{{ $project->name }}
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">{{ $project->name }}.</div>
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
@forelse ($project->environments as $environment)
|
||||
<a class="box" href="{{ route('project.resources', [$project->uuid, $environment->name]) }}">
|
||||
|
||||
@@ -1,13 +1,6 @@
|
||||
<x-layout>
|
||||
<h1>Projects</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
All Projects
|
||||
</li>
|
||||
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">All Projects</div>
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
@forelse ($projects as $project)
|
||||
<a href="{{ route('project.show', ['project_uuid' => data_get($project, 'uuid')]) }}"
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
<x-layout>
|
||||
<h1>Servers</h1>
|
||||
<nav class="flex pt-2 pb-10 text-sm">
|
||||
<ol class="inline-flex items-center">
|
||||
<li class="inline-flex items-center">
|
||||
All Servers
|
||||
</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<div class="pt-2 pb-10 text-sm">All Servers</div>
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
@forelse ($servers as $server)
|
||||
<a class="text-center hover:no-underline box group"
|
||||
|
||||
Reference in New Issue
Block a user