X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/3c41b15be65ca59a89f1588522d2d58f775e71cc..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 72d8d00aa..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,56 +7,25 @@
 
-

{{ 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', - 'tabindex' => 1, - '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($samlEnabled) -
-
- - {{-- @icon('auth/github') --}} - {{ trans('auth.log_in_with', ['socialDriver' => 'SAML']) }} - -
- @endif - - @if(setting('registration-enabled', false)) + @if(setting('registration-enabled') && config('auth.method') === 'standard')

{{ trans('auth.dont_have_account') }}