You've already forked Atomcms-edit
51 lines
1.7 KiB
PHP
Executable File
51 lines
1.7 KiB
PHP
Executable File
<x-slot name="title">
|
|
<h2 class="text-2xl font-semibold">{{ __('Hello!') }}</h2>
|
|
<p class="dark:text-gray-400">
|
|
{{ __('There is currently :online users online', ['online' => cache()->remember('online_user_count', 30, fn() => DB::table('users')->where('online', '1')->count())]) }}
|
|
</p>
|
|
</x-slot>
|
|
|
|
<form class="flex flex-col gap-y-3" action="{{ route('login') }}" method="POST">
|
|
@csrf
|
|
|
|
<div>
|
|
<x-form.label for="username">
|
|
{{ __('Username') }}
|
|
</x-form.label>
|
|
|
|
<x-form.input error-bag="login" name="username" value="{{ old('username') }}" placeholder="{{ __('Username') }}"
|
|
:autofocus="true" />
|
|
</div>
|
|
|
|
<div>
|
|
<x-form.label for="password">
|
|
{{ __('Password') }}
|
|
</x-form.label>
|
|
|
|
<x-form.input error-bag="login" name="password" placeholder="{{ __('Password') }}" type="password" />
|
|
</div>
|
|
|
|
@if (setting('google_recaptcha_enabled'))
|
|
<div class="g-recaptcha" data-sitekey="{{ config('habbo.site.recaptcha_site_key') }}"></div>
|
|
@endif
|
|
|
|
@if (setting('cloudflare_turnstile_enabled'))
|
|
<x-turnstile />
|
|
@endif
|
|
|
|
<x-form.primary-button>
|
|
{{ __('Login') }}
|
|
</x-form.primary-button>
|
|
|
|
<div class="text-center text-sm font-semibold text-gray-700 dark:text-gray-400">
|
|
<a href="{{ route('forgot.password.get') }}" class="hover:underline" x-on:click="open = false">
|
|
{{ __('Did you forget your password?') }}
|
|
</a>
|
|
</div>
|
|
<div class="text-center text-sm font-semibold text-gray-700 dark:text-gray-400">
|
|
<a href="{{ route('register') }}" class="hover:underline" x-on:click="open = false">
|
|
{{ __('Dont have an account? Join now!') }}
|
|
</a>
|
|
</div>
|
|
</form>
|