Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions resources/views/pages/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public function authenticate()
return redirect(config('devdojo.auth.settings.redirect_after_auth'));
}
}

}
};

Expand Down Expand Up @@ -169,7 +168,7 @@ public function authenticate()
@endif

@if($showSocialProviderInfo)
<div class="p-4 text-sm border rounded-md bg-zinc-50 border-zinc-200">
<div class="p-4 text-sm rounded-md border bg-zinc-50 border-zinc-200">
<span>{{ str_replace('__social_providers_list__', implode(', ', $userSocialProviders), config('devdojo.auth.language.login.social_auth_authenticated_message')) }}</span>
<button wire:click="editIdentity" type="button" class="underline translate-x-0.5">{{ config('devdojo.auth.language.login.change_email') }}</button>
</div>
Expand All @@ -189,7 +188,7 @@ public function authenticate()
<div class="{{ $passwordFieldClasses }}">
<x-auth::elements.input :label="config('devdojo.auth.language.login.password')" type="password" wire:model="password" data-auth="password-input" id="password" name="password" autocomplete="current-password" />
<x-auth::elements.checkbox :label="config('devdojo.auth.language.login.remember_me')" wire:model="rememberMe" id="remember-me" data-auth="remember-me-input" />
<div class="flex items-center justify-between text-sm leading-5">
<div class="flex justify-between items-center text-sm leading-5">
<x-auth::elements.text-link href="{{ route('auth.password.request') }}" data-auth="forgot-password-link">{{ config('devdojo.auth.language.login.forget_password') }}</x-auth::elements.text-link>
</div>
</div>
Expand Down
Loading