mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-26 02:26:03 +00:00
11 lines
539 B
PHP
11 lines
539 B
PHP
<form class="application-settings-form flex w-full flex-col gap-4" wire:submit="submit">
|
|
<x-forms.input placeholder="0 0 * * * or daily" id="frequency"
|
|
helper="You can use every_minute, hourly, daily, weekly, monthly, yearly or a cron expression." label="Frequency"
|
|
required />
|
|
<div class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
|
|
<x-forms.button type="submit" @click="modalOpen=false" isHighlighted>
|
|
Add schedule
|
|
</x-forms.button>
|
|
</div>
|
|
</form>
|