lasthourcloud/resources/views/livewire/settings/configuration.blade.php

28 lines
1.3 KiB
PHP
Raw Normal View History

2023-04-25 08:06:45 +00:00
<div>
2023-06-06 13:30:33 +00:00
<form wire:submit.prevent='submit' class="flex flex-col">
2023-06-02 10:34:45 +00:00
<div class="flex items-center gap-2">
2023-06-07 20:07:26 +00:00
<h3>Configuration</h3>
2023-05-25 12:05:44 +00:00
<x-forms.button type="submit">
2023-05-22 10:00:59 +00:00
Save
2023-05-25 12:05:44 +00:00
</x-forms.button>
2023-05-22 10:00:59 +00:00
</div>
<div class="flex flex-col gap-2">
2023-05-31 07:22:08 +00:00
<div class="flex gap-2">
2023-05-25 12:05:44 +00:00
<x-forms.input id="settings.fqdn" label="Coolify's Domain" />
2023-05-31 07:22:08 +00:00
<x-forms.input id="settings.default_redirect_404" label="Default Redirect 404"
helper="All urls that has no service available will be redirected to this domain.<span class='text-helper'>You can set to your main marketing page or your social media link.</span>" />
2023-04-25 08:06:45 +00:00
</div>
2023-06-12 10:21:48 +00:00
{{-- <div class="flex gap-2 ">
2023-05-25 12:05:44 +00:00
<x-forms.input type="number" id="settings.public_port_min" label="Public Port Min" />
<x-forms.input type="number" id="settings.public_port_max" label="Public Port Max" />
2023-06-12 10:21:48 +00:00
</div> --}}
2023-04-25 08:06:45 +00:00
</div>
</form>
2023-06-06 13:30:33 +00:00
2023-06-07 20:07:26 +00:00
<div class="flex flex-col py-6 text-right w-52">
2023-05-25 12:05:44 +00:00
<x-forms.checkbox instantSave id="is_auto_update_enabled" label="Auto Update Coolify" />
<x-forms.checkbox instantSave id="is_registration_enabled" label="Registration Allowed" />
<x-forms.checkbox instantSave id="do_not_track" label="Do Not Track" />
2023-04-25 08:06:45 +00:00
</div>
</div>