Enable logins using pilot ID #698
This commit is contained in:
@@ -10,6 +10,7 @@ return [
|
||||
'newestpilots' => 'Newest Pilots',
|
||||
'profile' => 'Profile',
|
||||
'email' => 'Email',
|
||||
'pilot_id' => 'Pilot ID',
|
||||
'register' => 'Register',
|
||||
'login' => 'Log In',
|
||||
'logout' => 'Log Out',
|
||||
@@ -48,6 +49,7 @@ return [
|
||||
'inactive' => 'Inactive',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'or' => 'or',
|
||||
'days' => [
|
||||
'mon' => 'Monday',
|
||||
'tues' => 'Tuesday',
|
||||
|
||||
@@ -10,6 +10,7 @@ return [
|
||||
'newestpilots' => 'Nuevos pilotos',
|
||||
'profile' => 'Perfil',
|
||||
'email' => 'Email',
|
||||
'pilot_id' => 'Pilot ID',
|
||||
'register' => 'Registrarse',
|
||||
'login' => 'Iniciar sesión',
|
||||
'logout' => 'Cerrar sesión',
|
||||
@@ -48,6 +49,7 @@ return [
|
||||
'inactive' => 'Inactivo',
|
||||
'yes' => 'Sí',
|
||||
'no' => 'No',
|
||||
'or' => 'o',
|
||||
'days' => [
|
||||
'mon' => 'lunes',
|
||||
'tues' => 'martes',
|
||||
|
||||
@@ -10,6 +10,7 @@ return [
|
||||
'newestpilots' => 'Ultimi Piloti',
|
||||
'profile' => 'Profilo',
|
||||
'email' => 'Email',
|
||||
'pilot_id' => 'Pilot ID',
|
||||
'login' => 'Accesso',
|
||||
'logout' => 'Uscita',
|
||||
'register' => 'Registrazione',
|
||||
@@ -48,6 +49,7 @@ return [
|
||||
'inactive' => 'Inattivo',
|
||||
'yes' => 'Sì',
|
||||
'no' => 'No',
|
||||
'or' => 'o',
|
||||
'days' => [
|
||||
'mon' => 'Lunedì',
|
||||
'tues' => 'Martedì',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
{{
|
||||
Form::text('email', old('email'), [
|
||||
'id' => 'email',
|
||||
'placeholder' => __('common.email'),
|
||||
'placeholder' => __('common.email').' '.__('common.or').' '.__('common.pilot_id'),
|
||||
'class' => 'form-control',
|
||||
'required' => true,
|
||||
])
|
||||
|
||||
1
resources/views/vendor/mail/text/button.blade.php
vendored
Normal file
1
resources/views/vendor/mail/text/button.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{{ $slot }}: {{ $url }}
|
||||
1
resources/views/vendor/mail/text/footer.blade.php
vendored
Normal file
1
resources/views/vendor/mail/text/footer.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{{ $slot }}
|
||||
1
resources/views/vendor/mail/text/header.blade.php
vendored
Normal file
1
resources/views/vendor/mail/text/header.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[{{ $slot }}]({{ $url }})
|
||||
9
resources/views/vendor/mail/text/layout.blade.php
vendored
Normal file
9
resources/views/vendor/mail/text/layout.blade.php
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
{!! strip_tags($header) !!}
|
||||
|
||||
{!! strip_tags($slot) !!}
|
||||
@isset($subcopy)
|
||||
|
||||
{!! strip_tags($subcopy) !!}
|
||||
@endisset
|
||||
|
||||
{!! strip_tags($footer) !!}
|
||||
27
resources/views/vendor/mail/text/message.blade.php
vendored
Normal file
27
resources/views/vendor/mail/text/message.blade.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
@component('mail::layout')
|
||||
{{-- Header --}}
|
||||
@slot('header')
|
||||
@component('mail::header', ['url' => config('app.url')])
|
||||
{{ config('app.name') }}
|
||||
@endcomponent
|
||||
@endslot
|
||||
|
||||
{{-- Body --}}
|
||||
{{ $slot }}
|
||||
|
||||
{{-- Subcopy --}}
|
||||
@isset($subcopy)
|
||||
@slot('subcopy')
|
||||
@component('mail::subcopy')
|
||||
{{ $subcopy }}
|
||||
@endcomponent
|
||||
@endslot
|
||||
@endisset
|
||||
|
||||
{{-- Footer --}}
|
||||
@slot('footer')
|
||||
@component('mail::footer')
|
||||
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
|
||||
@endcomponent
|
||||
@endslot
|
||||
@endcomponent
|
||||
1
resources/views/vendor/mail/text/panel.blade.php
vendored
Normal file
1
resources/views/vendor/mail/text/panel.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{{ $slot }}
|
||||
1
resources/views/vendor/mail/text/subcopy.blade.php
vendored
Normal file
1
resources/views/vendor/mail/text/subcopy.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{{ $slot }}
|
||||
1
resources/views/vendor/mail/text/table.blade.php
vendored
Normal file
1
resources/views/vendor/mail/text/table.blade.php
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{{ $slot }}
|
||||
Reference in New Issue
Block a user