Archived
1
0
Fork 0

views: add translations to some strings.

This commit is contained in:
Henrik Hautakoski 2021-07-31 14:00:06 +02:00
parent f5252052ff
commit 531da903ae
6 changed files with 16 additions and 13 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="mx-4">OR</div>
<div class="mx-4 uppercase">{{ __('or') }}</div>
<div class="bg-gray-200 h-px w-full"></div>
</div>