Skip to content

Commit 6934a74

Browse files
committed
Fix: Make helper text more clean to use a FQDN and not an URL
1 parent 1bb192f commit 6934a74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<form wire:submit.prevent='submit' class="flex flex-col w-full gap-2">
22
<x-forms.input id="cloudflare_token" required label="Cloudflare Token" />
33
<x-forms.input id="ssh_domain" label="Configured SSH Domain" required
4-
helper="The SSH Domain you configured in Cloudflare" />
4+
helper="The SSH Domain you configured in Cloudflare. Make sure there is no protocol like http(s):// so you provide a FQDN not a URL." />
55
<x-forms.button type="submit" isHighlighted @click="modalOpen=false">Automated Configuration</x-forms.button>
66
</form>

resources/views/livewire/server/form.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class="mt-8 mb-4 w-full font-bold box-without-bg bg-coollabs hover:bg-coollabs-1
6868
</div>
6969
<div class="flex flex-col gap-2 w-full lg:flex-row">
7070
<x-forms.input type="password" id="server.ip" label="IP Address/Domain"
71-
helper="An IP Address (127.0.0.1) or domain (example.com)." required />
71+
helper="An IP Address (127.0.0.1) or domain (example.com). Make sure there is no protocol like http(s):// so you provide a FQDN not a URL." required />
7272
<div class="flex gap-2">
7373
<x-forms.input id="server.user" label="User" required />
7474
<x-forms.input type="number" id="server.port" label="Port" required />

0 commit comments

Comments
 (0)