mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-23 03:32:19 +00:00
14 lines
450 B
PHP
14 lines
450 B
PHP
<form
|
|
id="install-nginx"
|
|
class="w-full"
|
|
hx-post="{{ route("servers.services.install", ["server" => $server]) }}"
|
|
hx-swap="outerHTML"
|
|
hx-select="#install-nginx"
|
|
>
|
|
@csrf
|
|
<input type="hidden" name="name" value="nginx" />
|
|
<input type="hidden" name="type" value="webserver" />
|
|
<input type="hidden" name="version" value="latest" />
|
|
<x-secondary-button class="!w-full" hx-disable>Install</x-secondary-button>
|
|
</form>
|