fix(ui): put Save Credentials beside Step 2 heading

Match the page action pattern used elsewhere by placing the submit
button next to the credentials step title instead of under the form.
This commit is contained in:
Andras Bacsai
2026-07-21 21:02:04 +02:00
parent 8782079dcc
commit ef4a18833e
@@ -163,8 +163,11 @@
</ul>
</div>
<h3 class="pt-2">Step 2: Enter the credentials</h3>
<form wire:submit='submit' class="flex flex-col gap-2">
<div class="flex flex-col sm:flex-row sm:items-center gap-2 pt-2">
<h3>Step 2: Enter the credentials</h3>
<x-forms.button type="submit">Save Credentials</x-forms.button>
</div>
<x-forms.input id="name" label="Name" />
<x-forms.input id="clientId" label="Application ID" required
helper="The Application ID from your GitLab OAuth Application." />
@@ -212,8 +215,6 @@
</div>
</div>
</div>
<x-forms.button type="submit" class="mt-2">Save Credentials</x-forms.button>
</form>
@if ($clientId)