Archived
1
0
Fork 0

Merge branch 'lang'

This commit is contained in:
Henrik Hautakoski 2021-08-01 11:19:10 +02:00
commit 6325109e80
20 changed files with 346 additions and 15 deletions

View file

@ -1,17 +1,17 @@
<x-layout name="auth">
<h1 class="text-gray-500 text-3xl text-center mb-4">Login</h1>
<h1 class="text-gray-500 text-3xl text-center mb-4">{{ __('Login') }}</h1>
<x-form action="{{ route('auth.login.store') }}">
<x-input name="username" placeholder="{{ __('Username') }}" class="mb-2"/>
<x-input-password placeholder="{{ __('Password') }}" class="mb-2" />
<x-button element="input" type="submit" name="submit" value="Login" class="w-full" />
<x-button element="input" type="submit" name="submit" value="{{ __('Login') }}" class="w-full" />
</x-form>
@if (config('services.discord.client_id'))
<div class="flex items-center justify-between my-4">
<div class="bg-gray-200 h-px w-full"></div>
<div class="text-gray-400 mx-4">OR</div>
<div class="text-gray-400 mx-4 uppercase">{{ __('or') }}</div>
<div class="bg-gray-200 h-px w-full"></div>
</div>