This commit is contained in:
Andras Bacsai
2023-06-07 17:11:21 +02:00
parent 0f18fbc24c
commit 881bae0a15
6 changed files with 31 additions and 26 deletions

View File

@@ -1,19 +1,25 @@
<div>
<h1>Create a new Destination</h1>
<div class="pb-5 text-sm breadcrumbs">
<ul>
<li>
Destinations are used to separate resources in a server.
</li>
</ul>
</div>
<form class="flex flex-col gap-4" wire:submit.prevent='submit'>
<div class="flex gap-2">
<h1>New Destination</h1>
<x-forms.button type="submit">
Save
</x-forms.button>
<x-forms.input id="name" label="Name" required />
<x-forms.input id="network" label="Network" required />
</div>
<x-forms.input id="name" label="Name" required />
<x-forms.input id="network" label="Network" required />
<x-forms.select id="server_id" label="Select a server" required>
<option disabled>Select a server</option>
@foreach ($servers as $server)
<option value="{{ $server->id }}">{{ $server->name }}</option>
@endforeach
</x-forms.select>
<x-forms.button type="submit">
Save Destination
</x-forms.button>
</form>
</div>

View File

@@ -1,5 +1,5 @@
<div>
<h1>New Application</h1>
<h1>Create a new Application</h1>
<div class="pb-4 text-sm">Deploy any public or private git repositories through a Deploy Key.</div>
<h3 class="py-2">Select a private key</h3>
@foreach ($private_keys as $key)

View File

@@ -1,5 +1,5 @@
<div>
<h1>New Application</h1>
<h1>Create a new Application</h1>
<div class="pb-4 text-sm">Deploy any public or private git repositories through a GitHub App.</div>
@if ($github_apps->count() > 0)
<form class="flex flex-col" wire:submit.prevent='submit'>

View File

@@ -1,5 +1,5 @@
<div>
<h1>New Application</h1>
<h1>Create a new Application</h1>
<div class="pb-4 text-sm">Deploy any public git repositories.</div>
<form class="flex flex-col gap-2" wire:submit.prevent='submit'>
<div class="flex flex-col gap-2">

View File

@@ -1,13 +1,13 @@
<div>
<h1>Create a new Server</h1>
<div class="pb-5 text-sm breadcrumbs">
<ul>
<li>
Servers are the main blocks of your infrastructure.
</li>
</ul>
</div>
<form class="flex flex-col gap-2" wire:submit.prevent='submit'>
<h1>Create a new Server</h1>
<div class="pb-5 text-sm breadcrumbs">
<ul>
<li>
Servers are the main blocks of your infrastructure.
</li>
</ul>
</div>
<div class="flex gap-2">
<x-forms.input id="name" label="Name" required />
<x-forms.input id="description" label="Description" />