Path : /var/www/html/master288-bk2/storage/framework/views/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/master288-bk2/storage/framework/views/c0541905fde5b7af582e96d0bd050bcd9180a058.php |
<!DOCTYPE html> <html lang="en-us" id="extr-page"> <head> <meta charset="utf-8"> <title>Login</title> <meta name="description" content="Login"> <meta name="author" content="henghengnews"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- #CSS Links --> <!-- Basic Styles --> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/bootstrap.min.css')); ?>"> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/font-awesome.min.css')); ?>"> <!-- SmartAdmin Styles : Caution! DO NOT change the order --> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/smartadmin-production-plugins.min.css')); ?>"> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/smartadmin-production.min.css')); ?>"> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/smartadmin-skins.min.css')); ?>"> <!-- SmartAdmin RTL Support --> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/smartadmin-rtl.min.css')); ?>"> <!-- We recommend you use "your_style.css" to override SmartAdmin specific styles this will also ensure you retrain your customization with each SmartAdmin update. <link rel="stylesheet" type="text/css" media="screen" href="css/your_style.css"> --> <!-- Demo purpose only: goes with demo.js, you can delete this css when designing your own WebApp --> <link rel="stylesheet" type="text/css" media="screen" href="<?php echo e(asset('admin-asset/css/demo.min.css')); ?>"> <!-- #FAVICONS --> <link rel="shortcut icon" href="<?php echo e(asset('fav.png')); ?>" type="image/x-icon"> <!-- #GOOGLE FONT --> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,300,400,700"> <!-- iOS web-app metas : hides Safari UI Components and Changes Status Bar Appearance --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <!-- Startup image for web apps --> <link rel="apple-touch-startup-image" href="<?php echo e(asset('img/splash/ipad-landscape.png')); ?>" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)"> <link rel="apple-touch-startup-image" href="<?php echo e(asset('img/splash/ipad-portrait.png')); ?>" media="screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)"> <link rel="apple-touch-startup-image" href="<?php echo e(asset('img/splash/iphone.png')); ?>" media="screen and (max-device-width: 320px)"> </head> <body class="animated fadeInDown"> <header id="header"> <div id="logo-group"> <a href="<?php echo e(route('home')); ?>" title="Visit Site"> <span id="logo"> <img src="<?php echo e(asset('logo.png')); ?>" alt="Logo" width="100%"> </span> </a> </div> <div class="pull-right" style="line-height:70px;font-weight: bold;font-size:15px;"> <a href="<?php echo e(route('home')); ?>" style="margin-right: 30px">Home Page </a> <a href="<?php echo e(route('login')); ?>">Login</a> </div> </header> <div id="main" role="main"> <!-- MAIN CONTENT --> <div id="content" class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-7 col-lg-8 hidden-xs hidden-sm"> <h1 class="txt-color-red login-header-big">Welcome Admin</h1> <div class="hero"> <div class="pull-left login-desc-box-l"> <h4 class="paragraph-header">Welcome to <a href="<?php echo e(route('home')); ?>">Master288.com</a> login Page. </h4> </div> <img src="<?php echo e(asset('admin-asset/img/demo/iphoneview.png')); ?>" class="pull-right display-image" alt="" style="width:210px"> </div> <div class="row"> <!-- <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"> <h5 class="about-heading">Our Vision</h5> <p> To be the company that satisfies the continuous demands of customers by providing quality services that exceeds the expectations of our current and future clients. </p> </div> <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6"> <h5 class="about-heading">Our Mission</h5> <p> To build long term relationship with customers and clients by providing the best customer services through innovation, assurance, and advanced technology. </p> </div> --> </div> </div> <div class="col-xs-12 col-sm-12 col-md-5 col-lg-4"> <div class="well no-padding"> <form method="POST" action="<?php echo e(route('login')); ?>" id="login-form" class="smart-form client-form"> <?php echo csrf_field(); ?> <header> Sign In </header> <fieldset> <section> <label class="label">E-mail</label> <label class="input"> <i class="icon-append fa fa-user"></i> <input type="email" name="email" class="form-control" autofocus> <?php if($errors->has('email')): ?> <br/> <span class="invalid-feedback alert alert-danger"> <strong><?php echo e($errors->first('email')); ?></strong> </span> <?php endif; ?> <b class="tooltip tooltip-top-right"><i class="fa fa-user txt-color-teal"></i> Please enter email address/username</b></label> </section> <section> <label class="label">Password</label> <label class="input"> <i class="icon-append fa fa-lock"></i> <input type="password" name="password"> <?php if($errors->has('password')): ?> <br/> <span class="invalid-feedback alert alert-danger"> <strong><?php echo e($errors->first('password')); ?></strong> </span> <?php endif; ?> <b class="tooltip tooltip-top-right"><i class="fa fa-lock txt-color-teal"></i> Enter your password</b> </label> </section> <section> <label class="checkbox"> <input type="checkbox" name="remember" <?php echo e(old('remember') ? 'checked' : ''); ?>> <i></i>Stay signed in</label> <a class="btn btn-link" href="<?php echo e(route('password.request')); ?>"> <?php echo e(__('Forgot Your Password?')); ?> </a> </section> </fieldset> <footer> <button type="submit" class="btn btn-primary"> Sign in </button> </footer> </form> </div> </div> </div> </div> </div> <!--================================================== --> <!-- PACE LOADER - turn this on if you want ajax loading to show (caution: uses lots of memory on iDevices)--> <script src="<?php echo e(asset('admin-asset/js/plugin/pace/pace.min.js')); ?>"></script> <!-- Link to Google CDN's jQuery + jQueryUI; fall back to local --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script> if (!window.jQuery) { document.write('<script src="js/libs/jquery-2.1.1.min.js"><\/script>');} </script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script> <script> if (!window.jQuery.ui) { document.write('<script src="js/libs/jquery-ui-1.10.3.min.js"><\/script>');} </script> <!-- IMPORTANT: APP CONFIG --> <script src="<?php echo e(asset('admin-asset/js/app.config.js')); ?>"></script> <!-- JS TOUCH : include this plugin for mobile drag / drop touch events <script src="js/plugin/jquery-touch/jquery.ui.touch-punch.min.js"></script> --> <!-- BOOTSTRAP JS --> <script src="<?php echo e(asset('admin-asset/js/bootstrap/bootstrap.min.js')); ?>"></script> <!-- JQUERY VALIDATE --> <script src="<?php echo e(asset('admin-asset/js/plugin/jquery-validate/jquery.validate.min.js')); ?>"></script> <!-- JQUERY MASKED INPUT --> <script src="<?php echo e(asset('admin-asset/js/plugin/masked-input/jquery.maskedinput.min.js')); ?>"></script> <!--[if IE 8]> <h1>Your browser is out of date, please update your browser by going to www.microsoft.com/download</h1> <![endif]--> <!-- MAIN APP JS FILE --> <script src="<?php echo e(asset('admin-asset/js/app.min.js')); ?>"></script> <script type="text/javascript"> runAllForms(); $(function() { // Validation $("#login-form").validate({ // Rules for form validation rules : { email : { required : true, email : true }, password : { required : true, minlength : 3, maxlength : 20 } }, // Messages for form validation messages : { email : { required : 'Please enter your email address', email : 'Please enter a VALID email address' }, password : { required : 'Please enter your password' } }, // Do not change code below errorPlacement : function(error, element) { error.insertAfter(element.parent()); } }); }); </script> </body> </html> <?php /**PATH /var/www/html/master288/resources/views/auth/login.blade.php ENDPATH**/ ?>