⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.31
Server IP:
95.217.99.93
Server:
Linux sv1.sonichosted.com 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
lifestylescentra
/
www
/
resources
/
views
/
auth
/
View File Name :
login.blade.php
@extends('website.layout.master') @section('content') <!--============================ BREADCRUMBS START =============================--> @include('components.website.breadcrum', ['title' => __('Log In')]) <!--============================ BREADCRUMBS END =============================--> <!--============================ LOGIN START =============================--> <section class="wsus__login mt_120 xs_mt_100 mb_120 xs_mb_100"> <div class="row"> <div class="col-lg-6 col-xl-7 wow fadeInLeft"> <div class="wsus__login_img"> <img src="{{ asset($utility?->login_image) }}" alt="login" class="img-fluid w-100"> </div> </div> <div class="col-lg-6 col-xl-5 wow fadeInRight"> <div class="wsus__login_contant"> <h2>{{ __('Login') }}</h2> <p>{{ __('Login with fitnes & get healthy') }}</p> <form action="{{ route('user-login') }}" class="wsus__login_form" Method="POST"> @csrf <input type="email" name="email" placeholder="{{ __('Email') }}"> <input type="password" name="password" placeholder="{{ __('Password') }}"> @if ($setting->recaptcha_status == 'active') <div class="form-group inflanar-form-input mg-top-20"> <div class="g-recaptcha" data-sitekey="{{ $setting->recaptcha_site_key }}"></div> </div> @endif <a href="{{ route('password.request') }}" class="forgot_pass">{{ __('Forgot Password') }}?</a> <button type="submit" class="common_btn common_btn_2">{{ __('Log In') }}</button> </form> @if (enum_exists('App\Enums\SocialiteDriverType')) @php $socialiteEnum = 'App\Enums\SocialiteDriverType'; $icons = $socialiteEnum::getIcons(); @endphp @foreach ($socialiteEnum::cases() as $index => $case) @php if ($case->value != 'google') { continue; } $driverName = $case->value . '_login_status'; @endphp @if ($setting->$driverName == 'active') <b>{{ __('Or') }}</b> <a href="{{ route('auth.social', $case->value) }}" class="wsus__login_others_option"> <img src="{{ asset('website/images/google_login.png') }}" alt="google" class="img-fluid w-100">{{ __('Google') }} </a> @endif @endforeach @endif <p class="sign_up">{{ __("Don't have an account") }} ? <a href="{{ route('register') }}">{{ __('Registration') }}</a> </p> </div> </div> </div> </section> <!--============================ LOGIN END =============================--> @endsection