mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
f94fd44ff6
- Intended to improve RTL support in the interface. - Also adds hebrew to language dropdown since that was missing. Related to #1794
36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
@extends('simple-layout')
|
|
|
|
@section('content')
|
|
|
|
<div class="container very-small">
|
|
|
|
<div class="my-l"> </div>
|
|
|
|
<div class="card content-wrap auto-height">
|
|
<h1 class="list-heading">{{ Str::title(trans('auth.log_in')) }}</h1>
|
|
|
|
@include('auth.forms.login.' . $authMethod)
|
|
|
|
@if(count($socialDrivers) > 0)
|
|
<hr class="my-l">
|
|
@foreach($socialDrivers as $driver => $name)
|
|
<div>
|
|
<a id="social-login-{{$driver}}" class="button outline block svg" href="{{ url("/login/service/" . $driver) }}">
|
|
@icon('auth/' . $driver)
|
|
<span>{{ trans('auth.log_in_with', ['socialDriver' => $name]) }}</span>
|
|
</a>
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
|
|
@if(setting('registration-enabled') && config('auth.method') === 'standard')
|
|
<div class="text-center pb-s">
|
|
<hr class="my-l">
|
|
<a href="{{ url('/register') }}">{{ trans('auth.dont_have_account') }}</a>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|