%PDF- %PDF-
Direktori : /home/silvzytp/crm-ind-code/storage/framework/views/ |
Current File : //home/silvzytp/crm-ind-code/storage/framework/views/0d5b51dd5b7f49a88ea2a44cc9c5f52f2fce1e9c.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><?php echo e(config('settings.site_title') ? config('settings.site_title') : env('APP_NAME')); ?> - Login</title> <link rel="shortcut icon" href="<?php echo e(asset(file_exists(config('settings.favicon')) ? config('settings.favicon') : '')); ?>" /> <!-- 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> .vh-100{ height: 100vh; } .content{ position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } .cursor-pointer{ cursor: pointer; } .footer { width: 100%; background: #ffffff; padding: 10px 0; font-size: 14px; font-weight: 500; } .main-content { background-repeat: no-repeat; background-size: cover; background-position: top center; } @media only screen and (max-width: 768px) { .w-60{ width: 100%; } } .login-box, form{ width: 400px } ul{ margin: 0; padding: 0; list-style: none; } .login-content{ background: linear-gradient(0deg, rgba(35,136,84,1) 0%, rgba(9,67,107,1) 100%); } .login-content h4{ color: #ffffff; font-size: 24px; font-weight: 600; } .login-content ul li { color: #b9b9b9; font-size: 13px; margin-top: 5px; background: url(https://crm.propspace.com/assets/auth/img/arrow_right.png) no-repeat 0 5px; padding-left: 13px; background-size: 6px; } </style> </head> <body class="main-content vh-100 position-relative" style="background-image: url(<?php echo e(asset('uploads/images/login.png')); ?>)"> <div class="row justify-content-center h-100 align-items-center"> <div class="col-lg-7 col-md-6 col-12"> <div class="logo-area text-center mb-4"> <img src="<?php echo e(asset('uploads/images/logo.jpg')); ?>" alt=""> </div> <div class="d-flex shadow bg-white align-items-center"> <div class="login-box bg-white"> <form class="bg-white px-4 py-3" action="<?php echo e(route('login')); ?>" method="post"> <?php echo csrf_field(); ?> <h4 class="mb-3">Login to your account</h4> <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> <button class="btn btn-info btn-block cursor-pointer" type="submit">Login</button> </form> </div> <div class="login-content px-4 py-3"> <ul> <li>Specially designed for Small to Medium Property/ Real Estate Brokerage Agencies.</li> <li>Super Admin, Admin, Manager & Agent access.</li> <li>Cold Calling DATA System (bulk amount of data import and export facility), Fresh Lead Management System & Secondary Market Calling Data System - ALL in a single platform!</li> <li>Fresh Leads Report (Daily/ Monthly) generation to cross check.</li> <li>No monthly Subscription fees (Only one time upfront payment).</li> <li>Unlimited Admin/ Managers/ Agents account creation with NO EXTRA charges.</li> <li>First 03 months FREE support</li> <li>Mobile application (both Android/ iOS) available. (Upcoming...)</li> </ul> </div> </div> </div> </div> <footer class="footer"> <div class="container"> <div class="row"> <div class="col-12"> <p class="mb-0 text-center"><?php echo config('settings.copyright'); ?></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/crm-dub-code/resources/views/auth/login.blade.php ENDPATH**/ ?>