OwlCyberSecurity - MANAGER
Edit File: e5e2c0e7659de3c7bebd02b8caa153f86a9df4d5.php
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- Meta, title, CSS, favicons, etc. --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="SHORTCUT ICON" href="<?php echo e(asset('images/sglogo.png')); ?>"> <title>Stakegains | Admin Login </title> <!-- Bootstrap --> <link href="vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Font Awesome --> <link href="vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet"> <!-- Custom Theme Style --> <link href="css/custom.css" rel="stylesheet"> </head> <body style="background:#F7F7F7; background-image: url('<?php echo e(asset('images/bg.jpg')); ?>');"> <div class=""> <a class="hiddenanchor" id="toregister"></a> <a class="hiddenanchor" id="tologin"></a> <center><img src="<?php echo e(asset('images/stakelogo.png')); ?>" class="img-responsive" style="max-height: 100px; margin-top: 100px;"> </center> <div id="wrapper" style="margin-top: 0px;"> <div id="login" class=" form"> <section class="login_content"> <form action="<?php echo e(url('/adminlogin')); ?>" method="POST"> <h1>Admin Login</h1> <div> <input type="text" class="form-control" placeholder="Login Email" required name="loginemail" /> </div> <div> <input type="password" class="form-control" placeholder="Login Password" required name="loginpassword" /> </div> <div> <?php if(isset($error)): ?> <div class="alert alert-danger"><?php echo e($error); ?></div> <?php endif; ?> </div> <div> <input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>"> <div style="text-align: left;"><button class="btn btn-sm btn-danger" style="width: 30%;">LOG IN</button></div> <?php /*<a class="reset_pass" href="#">Lost your password?</a>*/ ?> </div> <div class="clearfix"></div> <div class="separator"> <div class="clearfix"></div> <br /> <div> <p>©2016 All Rights Reserved. STAKEGAINS INC.</p> </div> </div> </form> </section> </div> </div> </div> </body> </html>