%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/silvzytp/ccd-ind-code/storage/framework/views/
Upload File :
Create Path :
Current File : //home/silvzytp/ccd-ind-code/storage/framework/views/fdbf2e26f6c9f2b496527cf8061fad89302f1813.php

<!DOCTYPE html>
<html>

<head>
    <base href="<?php echo e(url('/')); ?>">
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width initial-scale=1.0">
    
    <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>">
    <title>Login - <?php echo e(env('APP_NAME')); ?></title>
    <!-- GLOBAL MAINLY STYLES-->
    <link rel="stylesheet" href="<?php echo e(asset('assets')); ?>/vendors/bootstrap/css/bootstrap.min.css">
    <link rel="stylesheet" href="<?php echo e(asset('assets')); ?>/vendors/fontawesome/css/all.min.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css">
    <!-- THEME STYLES-->
    <link href="<?php echo e(asset('/')); ?>css/main.min.css" rel="stylesheet" />
    <!-- PAGE LEVEL STYLES-->
    <link href="<?php echo e(asset('/')); ?>css/pages/auth-light.css" rel="stylesheet" />

    <style>
        .login-title {
            font-weight: 700;
        }
        .main-content{
            background: #f4f4f4;
        }
        .vh-100{
            height: 100vh;
        }
        .content{
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        .cursor-pointer{
            cursor: pointer;
        }
        .footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 500;
        }
        .w-60{
            width: 70%;
        }
        .main-content {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center bottom;
        }

        @media only screen and (max-width: 768px) {
            .w-60{
                width: 100%;
            }
        }
    </style>
</head>

<body class="main-content vh-100 position-relative" style="background-image: url(<?php echo e(asset('uploads/images/bg-login.jpg')); ?>)">
    <div class="row justify-content-center h-100 align-items-center">

        <div class="col-lg-4 col-12">
            <form id="login-form" class="bg-white px-4 py-2" action="<?php echo e(route('login')); ?>" method="post">
                <?php echo csrf_field(); ?>
                <h2 class="login-title">Calling Data Management System</h2>
                <div class="form-group">
                    <div class="input-group-icon right">
                        <div class="input-icon"><i class="fa fa-envelope"></i></div>
                        <input class="form-control" type="email" name="email" placeholder="Email" autocomplete="off">
                        <?php $__errorArgs = ['email'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
                            <span class="d-block text-danger error"><?php echo e($message); ?></span>
                        <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                    </div>
                </div>
                <div class="form-group">
                    <div class="input-group-icon right">
                        <div class="input-icon password-text"><i class="fa fa-eye font-16"></i></div>
                        <input class="form-control" type="password" name="password" placeholder="Password">
                        <?php $__errorArgs = ['password'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
                            <span class="d-block text-danger error"><?php echo e($message); ?></span>
                        <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>
                    </div>
                </div>
                <div class="form-group d-flex justify-content-between">
                    <label class="ui-checkbox ui-checkbox-info">
                        <input type="checkbox" name="remember">
                        <span class="input-span"></span>Remember me</label>
                        <a href="<?php echo e(route('forgot-password')); ?>">Forgot password?</a>
                </div>
                <div class="form-group">
                    <button class="btn btn-info btn-block cursor-pointer" type="submit">Login</button>
                </div>
            </form>
        </div>
    </div>

    <footer class="footer">
        <div class="container">
            <div class="row">
                <div class="col-12">
                    <p class="mb-0 text-center">2023 © ALL RIGHTS RESERVED BY THE SILVER OAK PROPERTIES LLC DUBAI</p>
                </div>
            </div>
        </div>
    </footer>

    <!-- CORE PLUGINS -->
    <script src="<?php echo e(asset('assets/')); ?>/vendors/jquery/jquery-3.3.1.min.js"></script>
    <script src="<?php echo e(asset('assets/')); ?>/vendors/bootstrap/js/bootstrap.bundle.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
    <!-- PAGE LEVEL SCRIPTS-->
    <script>
        $(function() {
            $('#login-form').validate({
                errorClass: "help-block",
                rules: {
                    email: {
                        required: true,
                        email: true
                    },
                    password: {
                        required: true
                    }
                },
                highlight: function(e) {
                    $(e).closest(".form-group").addClass("has-error")
                },
                unhighlight: function(e) {
                    $(e).closest(".form-group").removeClass("has-error")
                },
            });
        });

        // toastr alert message
        function flashMessage(status, message){
            toastr.options = {
                "closeButton": false,
                "debug": false,
                "newestOnTop": false,
                "progressBar": true,
                "positionClass": "toast-top-right",
                "preventDuplicates": false,
                "onclick": null,
                "showDuration": "300",
                "hideDuration": "2000",
                "timeOut": "6000",
                "extendedTimeOut": "2000",
                "showEasing": "swing",
                "hideEasing": "linear",
                "showMethod": "fadeIn",
                "hideMethod": "fadeOut"
            }

            switch (status) {
                case 'success':
                toastr.success(message);
                break;

                case 'error':
                toastr.error(message);
                break;

                case 'warning':
                toastr.warning(message);
                break;

                case 'info':
                toastr.info(message);
                break;
            }
        }

        // session flash message
        <?php if(Session::get('success')): ?>
            flashMessage('success',"<?php echo e(Session::get('success')); ?>")
        <?php elseif(Session::get('error')): ?>
            flashMessage('error',"<?php echo e(Session::get('error')); ?>")
        <?php elseif(Session::get('info')): ?>
            flashMessage('info',"<?php echo e(Session::get('info')); ?>")
        <?php elseif(Session::get('warning')): ?>
            flashMessage('warning',"<?php echo e(Session::get('warning')); ?>")
        <?php endif; ?>


        // password input type text
        $(document).on('click','.password-text',function(){
            if($(this).children().hasClass('fa-eye')){
                $(this).children().removeClass('fa-eye');
                $(this).children().addClass('fa-eye-slash');
                $('input[name="password"]').attr('type','text');
            }else{
                $(this).children().removeClass('fa-eye-slash');
                $(this).children().addClass('fa-eye');
                $('input[name="password"]').attr('type','password');
            }
        });

    </script>
</body>

</html>
<?php /**PATH /home/silvzytp/calling_code/resources/views/auth/login.blade.php ENDPATH**/ ?>

Zerion Mini Shell 1.0