GOOD SHELL MAS BOY
Server: Apache/2.4.52 (Ubuntu)
System: Linux vmi1836763.contaboserver.net 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64
User: www-data (33)
PHP: 8.4.10
Disabled: NONE
Upload Files
File: /var/www/html/resources/views/livewire/auth/login.blade.php
<div>
    <div class="col-lg-6">
        <div class="log-reg-form search-modal form-style1 bgc-white p50 p30-sm default-box-shadow1 bdrs12">
            <div class="mb30">
                <h3 class="text-thm fw-bold">Login</h3>
                <p hidden class="text mt20">Hello, <a href="#" class="text-thm">Welcome back</a></p>
            </div>

            <form wire:submit.prevent="login">
                <div class="mb25">
                    <label class="form-label fw500 dark-color">Email Address</label>
                    <div class="input-group">
                        <div class="input-group-text">
                            <i class="flaticon-mail mr8"></i>
                        </div>
                        <input autocomplete="email" wire:model="email" type="email" class="form-control" placeholder="Email address">
                    </div>
                    @error('email')
                        <span class="text-danger">{{ $message }}</span>
                    @enderror
                </div>

                <div class="mb25" x-data="{ showPassword: false }">
                    <label class="form-label fw500 dark-color">Password</label>
                    <div class="input-group">
                        <div class="input-group-text">
                            <i class="flaticon-website mr8"></i>
                        </div>
                        <input autocomplete="new-password" wire:model="password" :type="showPassword ? 'text' : 'password'" class="form-control" placeholder="Password" />
                        <button type="button" @click="showPassword = !showPassword" class="input-group-text">
                            <i :class="showPassword ? 'fas fa-eye' : 'fas fa-eye-slash'"></i>
                        </button>
                    </div>
                    @error('password')
                        <span class="text-danger">{{ $message }}</span>
                    @enderror
                </div>

                <div class="d-flex justify-content-between">
                    <label class="form-label fw500 dark-color">
                        <a wire:navigate href="{{ route('forget-password') }}">Forgot Password</a>
                    </label>
                    <label hidden class="form-label fw500 dark-color">
                        <a wire:navigate href="{{ route('verify.account.email') }}">Verify Email</a>
                    </label>
                </div>

                <div class="d-grid mb20">
                    <button type="submit" wire:loading.attr="disabled" class="ud-btn btn-thm default-box-shadow2">
                        <span wire:loading wire:target="login" class="spinner-border spinner-border-sm"></span>
                        <span wire:loading wire:target="login"> Please wait ...</span>
                        <span wire:loading.remove> Login</span>
                    </button>
                </div>
            </form>

            @livewire('auth.google')

            <div class="hr_content mb20 text-center">
                Don't have an account? <a href="{{ route('register') }}" class="text-thm fw-bold">Sign up</a>
            </div>
        </div>
    </div>
</div>