coolify/resources/views/livewire/source/github/create.blade.php

23 lines
961 B
PHP
Raw Normal View History

2023-05-08 13:36:49 +02:00
<div>
2023-06-12 22:02:10 +02:00
<form wire:submit.prevent='createGitHubApp' class="flex flex-col">
<h2>GitHub App</h2>
<div class="flex gap-2">
<x-forms.input id="name" label="Name" required />
<x-forms.input helper="If empty, your GitHub user will be used." id="organization" label="Organization" />
</div>
<h3 class="py-4">Advanced</h3>
<div class="flex gap-2">
<x-forms.input id="html_url" label="HTML Url" required />
<x-forms.input id="api_url" label="API Url" required />
</div>
<div class="flex gap-2">
<x-forms.input id="custom_user" label="Custom Git User" required />
<x-forms.input id="custom_port" label="Custom Git Port" required />
2023-05-31 22:23:17 +02:00
</div>
2023-05-25 14:05:44 +02:00
<x-forms.checkbox class="pt-2" id="is_system_wide" label="System Wide" />
2023-06-13 10:02:58 +02:00
<x-forms.button type="submit">
Save New Source
2023-06-12 22:02:10 +02:00
</x-forms.button>
2023-05-08 13:36:49 +02:00
</form>
</div>