This commit is contained in:
Andras Bacsai
2023-05-22 22:30:33 +02:00
parent a044354294
commit c023fdae8b
30 changed files with 251 additions and 243 deletions

View File

@@ -1,22 +1,23 @@
<x-layout-simple>
<div class="flex items-center justify-center h-screen">
<div>
<div>
<div class="pb-8 text-5xl font-bold tracking-tight text-center text-white">Coolify</div>
<div class="w-96">
<form action="/login" method="POST" class="flex flex-col gap-2">
@csrf
<input type="email" name="email" placeholder="{{ __('input.email') }}"
@env('local') value="test@example.com" @endenv autofocus />
<input type="password" name="password" placeholder="{{ __('input.password') }}"
@env('local') value="password" @endenv />
@if ($errors->any())
<div class="text-center text-error">
<span>{{ __('auth.failed') }}</span>
</div>
@endif
<x-inputs.button type="submit">{{ __('auth.login') }}</x-inputs.button>
</form>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
<li>{{ __('auth.failed') }}</li>
</ul>
</div>
@endif
</div>
@if ($is_registration_enabled)
<a href="/register" class="flex justify-center pt-2">
@@ -25,6 +26,7 @@
@else
<div class="text-sm text-center">{{ __('auth.registration_disabled') }}</div>
@endif
</div>
</div>
</x-layout-simple>

View File

@@ -14,7 +14,7 @@
<x-inputs.button type="submit">{{ __('auth.register') }}</x-inputs.button>
</form>
@if ($errors->any())
<div class="alert alert-danger">
<div class="fixed top-0 alert alert-error">
<ul>
<li>{{ __('auth.failed') }}</li>
</ul>