mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 16:23:30 +00:00
16 lines
884 B
PHP
16 lines
884 B
PHP
<form wire:submit="submit" class="application-settings-form flex flex-col gap-4 px-4 py-4">
|
|
<x-unsaved-bar action="submit" />
|
|
<div class="flex items-end gap-2">
|
|
<x-forms.input id="filename" label="Filename" />
|
|
<x-modal-confirmation title="Delete initialization script?" buttonTitle="Delete" isErrorButton
|
|
submitAction="delete" :actions="[
|
|
'Permanently delete this initialization script from the database and server.',
|
|
'Redeployments that depend on this script may fail.',
|
|
]" confirmationText="{{ $filename }}"
|
|
confirmationLabel="Enter the initialization script name to confirm."
|
|
shortConfirmationLabel="Script name" :confirmWithPassword="false"
|
|
step2ButtonText="Permanently delete" />
|
|
</div>
|
|
<x-forms.textarea id="content" label="Content" rows="12" />
|
|
</form>
|