2023-04-19 10:42:15 +00:00
|
|
|
<div>
|
2023-05-31 08:19:29 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col">
|
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<h2 class="pb-0">Source</h2>
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.button type="submit">Save</x-forms.button>
|
2023-05-31 08:19:29 +00:00
|
|
|
</div>
|
|
|
|
<div class="text-sm">Code source of your application.</div>
|
|
|
|
<div class="py-4 ">
|
|
|
|
<a target="_blank" class="hover:no-underline" href="{{ $application->gitCommits }}">
|
|
|
|
<x-forms.button>Open Commits on Git
|
|
|
|
<x-external-link />
|
|
|
|
</x-forms.button>
|
2023-05-17 07:26:50 +00:00
|
|
|
</a>
|
2023-05-31 08:19:29 +00:00
|
|
|
<a target="_blank" class="hover:no-underline" href="{{ $application->gitBranchLocation }}">
|
|
|
|
<x-forms.button>Open Repository on Git
|
|
|
|
<x-external-link />
|
|
|
|
</x-forms.button>
|
2023-05-26 08:20:09 +00:00
|
|
|
</a>
|
2023-05-17 07:26:50 +00:00
|
|
|
</div>
|
2023-05-25 12:05:44 +00:00
|
|
|
<x-forms.input placeholder="coollabsio/coolify-example" id="application.git_repository" label="Repository" />
|
|
|
|
<x-forms.input placeholder="main" id="application.git_branch" label=" Branch" />
|
|
|
|
<x-forms.input placeholder="HEAD" id="application.git_commit_sha" placeholder="HEAD" label="Commit SHA" />
|
2023-05-31 08:19:29 +00:00
|
|
|
|
2023-05-17 07:26:50 +00:00
|
|
|
</form>
|
2023-04-19 10:42:15 +00:00
|
|
|
</div>
|