Skip to content

Commit 0d3d5f4

Browse files
committed
Fix: Css issue with advanced settings and remove cf tunnel in onboarding
1 parent 7ac45aa commit 0d3d5f4

File tree

1 file changed

+10
-19
lines changed

1 file changed

+10
-19
lines changed

resources/views/livewire/boarding/index.blade.php

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -273,27 +273,23 @@ class="bg-red-200 dark:bg-red-900 px-1 rounded">~/.ssh/authorized_keys</code>
273273
Please let me know your server details.
274274
</x-slot:question>
275275
<x-slot:actions>
276-
<form wire:submit='saveServer' class="flex flex-col w-full gap-4 lg:pr-10">
277-
<div class="flex flex-col gap-2 lg:flex-row">
278-
<x-forms.input required placeholder="Choose a name for your Server. Could be anything."
279-
label="Name" id="remoteServerName" wire:model="remoteServerName" />
280-
<x-forms.input placeholder="Description, so others will know more about this."
281-
label="Description" id="remoteServerDescription"
282-
wire:model="remoteServerDescription" />
283-
</div>
284-
<div class="flex flex-col gap-2 lg:flex-row ">
285-
<x-forms.input required placeholder="127.0.0.1" label="IP Address" id="remoteServerHost"
286-
wire:model="remoteServerHost" />
287-
</div>
276+
<form wire:submit='saveServer' class="flex flex-col w-full gap-4 lg:w-96">
277+
<x-forms.input required placeholder="Choose a name for your Server. Could be anything."
278+
label="Name" id="remoteServerName" wire:model="remoteServerName" />
279+
<x-forms.input placeholder="Description, so others will know more about this."
280+
label="Description" id="remoteServerDescription"
281+
wire:model="remoteServerDescription" />
282+
<x-forms.input required placeholder="127.0.0.1" label="IP Address" id="remoteServerHost"
283+
wire:model="remoteServerHost" />
288284
<div x-data="{ showAdvanced: false }" class="flex flex-col gap-2">
289285
<button @click="showAdvanced = !showAdvanced" type="button"
290286
class="text-left text-sm text-gray-600 dark:text-gray-300 hover:underline">
291287
Advanced Settings
292288
</button>
293-
<div x-show="showAdvanced" class="flex flex-col gap-2 lg:flex-row">
289+
<div x-show="showAdvanced" class="flex flex-col gap-2">
294290
<x-forms.input placeholder="Port number of your server. Default is 22." label="Port"
295291
id="remoteServerPort" wire:model="remoteServerPort" />
296-
<div class="w-full">
292+
<div>
297293
<x-forms.input placeholder="Default is root." label="User"
298294
id="remoteServerUser" wire:model="remoteServerUser" />
299295
<div class="text-xs text-gray-600 dark:text-gray-300">Non-root user is
@@ -303,11 +299,6 @@ class="text-left text-sm text-gray-600 dark:text-gray-300 hover:underline">
303299
</div>
304300
</div>
305301
</div>
306-
<div class="lg:w-64">
307-
<x-forms.checkbox
308-
helper="If you are using Cloudflare Tunnels, enable this. It will proxy all ssh requests to your server through Cloudflare.<br><span class='dark:text-warning'>Coolify does not install/setup Cloudflare (cloudflared) on your server.</span>"
309-
id="isCloudflareTunnel" label="Cloudflare Tunnel" wire:model="isCloudflareTunnel" />
310-
</div>
311302
<x-forms.button type="submit">Continue</x-forms.button>
312303
</form>
313304
</x-slot:actions>

0 commit comments

Comments
 (0)