Merge branch 'next' into fix-service-refresh-issues
This commit is contained in:
commit
ff054cfea9
1 changed files with 18 additions and 6 deletions
|
|
@ -14,15 +14,22 @@
|
||||||
<x-forms.input required id="name" label="Token Name"
|
<x-forms.input required id="name" label="Token Name"
|
||||||
placeholder="e.g., Production Hetzner. tip: add Hetzner project name to identify easier" />
|
placeholder="e.g., Production Hetzner. tip: add Hetzner project name to identify easier" />
|
||||||
|
|
||||||
<x-forms.input required type="password" id="token" label="API Token"
|
<x-forms.input required type="password" id="token" label="API Token" placeholder="Enter your API token" />
|
||||||
placeholder="Enter your API token" />
|
|
||||||
|
|
||||||
@if (auth()->user()->currentTeam()->cloudProviderTokens->where('provider', $provider)->isEmpty())
|
@if (auth()->user()->currentTeam()->cloudProviderTokens->where('provider', $provider)->isEmpty())
|
||||||
<div class="text-sm text-neutral-500 dark:text-neutral-400">
|
<div class="text-sm text-neutral-500 dark:text-neutral-400">
|
||||||
Create an API token in the <a
|
Create an API token in the <a
|
||||||
href='{{ $provider === 'hetzner' ? 'https://console.hetzner.com/projects' : '#' }}'
|
href='{{ $provider === 'hetzner' ? 'https://console.hetzner.com/projects' : '#' }}' target='_blank'
|
||||||
target='_blank' class='underline dark:text-white'>{{ ucfirst($provider) }} Console</a> → choose
|
class='underline dark:text-white'>{{ ucfirst($provider) }} Console</a> → choose
|
||||||
Project → Security → API Tokens.
|
Project → Security → API Tokens.
|
||||||
|
@if ($provider === 'hetzner')
|
||||||
|
<br><br>
|
||||||
|
Don't have a Hetzner account? <a href='https://coolify.io/hetzner' target='_blank'
|
||||||
|
class='underline dark:text-white'>Sign up here</a>
|
||||||
|
<br>
|
||||||
|
<span class="text-xs">(Coolify's affiliate link, only new accounts - supports us (€10)
|
||||||
|
and gives you €20)</span>
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
|
@ -42,13 +49,18 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-1 min-w-64">
|
<div class="flex-1 min-w-64">
|
||||||
<x-forms.input required type="password" id="token" label="API Token"
|
<x-forms.input required type="password" id="token" label="API Token" placeholder="Enter your API token" />
|
||||||
placeholder="Enter your API token" />
|
|
||||||
@if (auth()->user()->currentTeam()->cloudProviderTokens->where('provider', $provider)->isEmpty())
|
@if (auth()->user()->currentTeam()->cloudProviderTokens->where('provider', $provider)->isEmpty())
|
||||||
<div class="text-sm text-neutral-500 dark:text-neutral-400 mt-2">
|
<div class="text-sm text-neutral-500 dark:text-neutral-400 mt-2">
|
||||||
Create an API token in the <a href='https://console.hetzner.com/projects' target='_blank'
|
Create an API token in the <a href='https://console.hetzner.com/projects' target='_blank'
|
||||||
class='underline dark:text-white'>Hetzner Console</a> → choose Project → Security → API
|
class='underline dark:text-white'>Hetzner Console</a> → choose Project → Security → API
|
||||||
Tokens.
|
Tokens.
|
||||||
|
<br><br>
|
||||||
|
Don't have a Hetzner account? <a href='https://coolify.io/hetzner' target='_blank'
|
||||||
|
class='underline dark:text-white'>Sign up here</a>
|
||||||
|
<br>
|
||||||
|
<span class="text-xs">(Coolify's affiliate link, only new accounts - supports us (€10)
|
||||||
|
and gives you €20)</span>
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue