lasthourcloud/resources/views/livewire/project/new/docker-image.blade.php

12 lines
430 B
PHP
Raw Normal View History

2023-10-09 13:49:48 +00:00
<div>
<h1>Create a new Application</h1>
<div class="pb-4">You can deploy an existing Docker Image from any Registry.</div>
2023-12-07 18:06:32 +00:00
<form wire:submit="submit">
2023-10-09 13:49:48 +00:00
<div class="flex gap-2 pb-1">
<h2>Docker Image</h2>
<x-forms.button type="submit">Save</x-forms.button>
</div>
2023-10-10 09:16:38 +00:00
<x-forms.input rows="20" id="dockerImage" placeholder="nginx:latest"></x-forms.textarea>
2023-10-09 13:49:48 +00:00
</form>
</div>