X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/fc761784a1a8f82f797cf28c01e3a282e2fb8f69..refs/pull/5725/head:/resources/views/auth/login.blade.php diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index 35c117800..6278adcd7 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -1,4 +1,4 @@ -@extends('simple-layout') +@extends('layouts.simple') @section('content') @@ -7,51 +7,31 @@
 
-

{{ title_case(trans('auth.log_in')) }}

+

{{ Str::title(trans('auth.log_in')) }}

-
- {!! csrf_field() !!} + @include('auth.parts.login-message') -
- @include('auth.forms.login.' . $authMethod) -
- -
-
- @include('components.custom-checkbox', [ - 'name' => 'remember', - 'checked' => false, - 'value' => 'on', - 'label' => trans('auth.remember_me'), - ]) -
- -
- -
-
- -
+ @include('auth.parts.login-form-' . $authMethod) @if(count($socialDrivers) > 0)
@foreach($socialDrivers as $driver => $name)
- + @icon('auth/' . $driver) - {{ trans('auth.log_in_with', ['socialDriver' => $name]) }} + {{ trans('auth.log_in_with', ['socialDriver' => $name]) }}
@endforeach @endif - @if(setting('registration-enabled', false)) -
+ @if(setting('registration-enabled') && config('auth.method') === 'standard') + @endif
-@stop \ No newline at end of file +@stop