mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 08:23:25 +00:00
Standardize highlighted buttons, selected controls, and loading indicators on coollabs accent colors; improve light-mode log toolbar styling; enhance small popups with compact/icon modes; and align navbars, helpers, and related layouts with matching tests.
55 lines
2.6 KiB
PHP
55 lines
2.6 KiB
PHP
<div class="w-full">
|
|
<form class="application-settings-form flex w-full flex-col gap-4" wire:submit="addToken"
|
|
x-data="{
|
|
selectedProvider: $wire.entangle('provider'),
|
|
get providerName() {
|
|
return this.selectedProvider === 'digitalocean' ? 'DigitalOcean' :
|
|
this.selectedProvider.charAt(0).toUpperCase() + this.selectedProvider.slice(1);
|
|
},
|
|
get providerConsoleUrl() {
|
|
if (this.selectedProvider === 'hetzner') return 'https://console.hetzner.com/projects';
|
|
if (this.selectedProvider === 'vultr') return 'https://console.vultr.com/user/apiaccess/';
|
|
return 'https://cloud.digitalocean.com/account/api/tokens';
|
|
}
|
|
}">
|
|
@if (!$provider_locked)
|
|
<x-forms.listbox required id="provider" label="Provider" :wire="false" :value="$provider"
|
|
x-model="selectedProvider" :options="[
|
|
['value' => 'hetzner', 'label' => 'Hetzner'],
|
|
['value' => 'digitalocean', 'label' => 'DigitalOcean'],
|
|
['value' => 'vultr', 'label' => 'Vultr'],
|
|
]" />
|
|
@else
|
|
<input type="hidden" wire:model="provider" />
|
|
@endif
|
|
|
|
<div
|
|
class="rounded-lg border border-neutral-200 bg-neutral-50 p-3 text-[11px] leading-5 text-neutral-500 dark:border-white/[0.08] dark:bg-white/[0.025] dark:text-fg-dim">
|
|
Create the token in the
|
|
<a :href="providerConsoleUrl"
|
|
target="_blank" class="font-medium text-coollabs hover:underline dark:text-warning">
|
|
<span x-text="providerName + ' console'"></span>
|
|
</a>.
|
|
</div>
|
|
|
|
<div class="grid gap-4 lg:grid-cols-2">
|
|
<x-forms.input required id="name" label="Token name"
|
|
x-bind:placeholder="`Production ${providerName} token`" />
|
|
<x-forms.input required type="password" id="token" label="API token"
|
|
placeholder="Paste the provider token" />
|
|
<div class="lg:col-span-2">
|
|
<x-forms.textarea id="description" label="Description" rows="3"
|
|
placeholder="Optional notes about where this token is used" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex justify-end border-t border-neutral-200 pt-4 dark:border-white/[0.08]">
|
|
<x-forms.button type="submit"
|
|
class="button-highlighted"
|
|
wire:target="addToken">
|
|
Validate and add
|
|
</x-forms.button>
|
|
</div>
|
|
</form>
|
|
</div>
|