-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from codebar-ag/feature-updates
Feature Updates
- Loading branch information
Showing
9 changed files
with
79 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,65 @@ | ||
<x-auth::layout> | ||
<h2 class="mt-6 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">{{ __('auth::translations.login') }}</h2> | ||
|
||
<form class="mt-8 space-y-4" action="{{ route('auth.login.store') }}" method="POST"> | ||
@csrf | ||
@honeypot | ||
@if(config('laravel-auth.features.basic')) | ||
<form class="mt-8 space-y-4" action="{{ route('auth.login.store') }}" method="POST"> | ||
@csrf | ||
@honeypot | ||
|
||
<x-auth::form.input | ||
type="email" | ||
name="email" | ||
:label="__('auth::translations.email')" | ||
:placeholder="__('auth::translations.email')" | ||
autocomplete="email" | ||
:required="true" | ||
:required-badge="false" | ||
:autofocus="true" | ||
/> | ||
|
||
<x-auth::form.password | ||
name="password" | ||
:label="__('auth::translations.password')" | ||
:placeholder="__('auth::translations.password')" | ||
autocomplete="password" | ||
:required="true" | ||
:required-badge="false" | ||
/> | ||
<x-auth::form.input | ||
type="email" | ||
name="email" | ||
:label="__('auth::translations.email')" | ||
:placeholder="__('auth::translations.email')" | ||
autocomplete="email" | ||
:required="true" | ||
:required-badge="false" | ||
:autofocus="true" | ||
/> | ||
|
||
<div class="flex items-center justify-between"> | ||
<x-auth::form.checkbox | ||
name="remember" | ||
:label="__('auth::translations.remember-me')" | ||
<x-auth::form.password | ||
name="password" | ||
:label="__('auth::translations.password')" | ||
:placeholder="__('auth::translations.password')" | ||
autocomplete="password" | ||
:required="true" | ||
:required-badge="false" | ||
/> | ||
|
||
@if(config('laravel-auth.features.password_reset')) | ||
<div class="flex items-center"> | ||
<a href="{{ route('auth.request-password') }}" | ||
class="block text-sm text-gray-900 hover:text-gray-500 underline">{{ __('auth::translations.forgot-password') }}</a> | ||
</div> | ||
@endif | ||
</div> | ||
<div class="flex items-center justify-between"> | ||
<x-auth::form.checkbox | ||
name="remember" | ||
:label="__('auth::translations.remember-me')" | ||
/> | ||
|
||
<div class="space-y-4"> | ||
<x-auth::form.button.button> | ||
{{ __('auth::translations.sign-in') }} | ||
</x-auth::form.button.button> | ||
@if(config('laravel-auth.features.password_reset')) | ||
<div class="flex items-center"> | ||
<a href="{{ route('auth.request-password') }}" class="block text-sm text-gray-900 hover:text-gray-500 underline"> | ||
{{ __('auth::translations.forgot-password') }} | ||
</a> | ||
</div> | ||
@endif | ||
</div> | ||
|
||
@if(! in_array(\CodebarAg\LaravelAuth\Enums\ProviderEnum::MICROSOFT_OFFICE_365(), config('laravel-auth.providers.disabled'))) | ||
<div class="space-y-4"> | ||
<x-auth::form.button.button> | ||
{{ __('auth::translations.sign-in') }} | ||
</x-auth::form.button.button> | ||
</div> | ||
</form> | ||
@endif | ||
|
||
<div class="space-y-4"> | ||
@if(config('laravel-auth.features.sso')) | ||
@if(in_array(\CodebarAg\LaravelAuth\Enums\ProviderEnum::MICROSOFT_OFFICE_365(), config('laravel-auth.providers'))) | ||
<x-auth::form.button.ahref | ||
:href="route('auth.provider', \CodebarAg\LaravelAuth\Enums\ProviderEnum::MICROSOFT_OFFICE_365())" | ||
class="bg-gray-500 hover:bg-gray-400" | ||
:href="route('auth.provider', \CodebarAg\LaravelAuth\Enums\ProviderEnum::MICROSOFT_OFFICE_365())" | ||
class="bg-gray-500 hover:bg-gray-400" | ||
> | ||
<svg class="fill-white w-4 h-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 278050 333334" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" image-rendering="optimizeQuality" fill-rule="evenodd" clip-rule="evenodd"><path fill="currentColor" d="M278050 305556l-29-16V28627L178807 0 448 66971l-448 87 22 200227 60865-23821V80555l117920-28193-17 239519L122 267285l178668 65976v73l99231-27462v-316z"/></svg> | ||
<span>{{ __('auth::translations.sign-in-with-microsoft') }}</span> | ||
</x-auth::form.button.ahref> | ||
@endif | ||
</div> | ||
|
||
</form> | ||
@endif | ||
</div> | ||
</x-auth::layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters