hjkhjkjhkhjkgjghjhgjhgjghjhghjghjhgjjnbvnvbnvk
bnmbnmbnhjkhjkhjkhjktyutyutyuytutyutyutyhgjgjghjgjghjguytutyry
/
home
/
b4h4ej4a6kj6
/
public_html
/
kitsandcleats.in
/
admin
/
Upload FileeE
HOME
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport"> <title>Admin Dashboard</title> <!-- General CSS Files --> <link rel="stylesheet" href="assets/css/app.min.css"> <link rel="stylesheet" href="assets/bundles/bootstrap-social/bootstrap-social.css"> <!-- Template CSS --> <link rel="stylesheet" href="assets/css/style.css"> <link rel="stylesheet" href="assets/css/components.css"> <!-- Custom style CSS --> <link rel="stylesheet" href="assets/css/custom.css"> <link rel='shortcut icon' type='image/x-icon' href='assets/img/favicon.ico' /> </head> <body> <div class="loader"></div> <div id="app"> <section class="section pt-5" style="height: 100vh;"> <div class="container mt-5"> <div class="text-center"> <h2>ADMIN PANEL LOGIN</h2> </div> <div class="row" style="margin-top :7%"> <div class="col-md-6"> <div class="text-center card justify-content-center"> <img src="images/r1.png" class="img-fluid" alt="logo" style="padding: 122px 20px;"> </div> </div> <div class="col-md-6"> <div class="card card-primary"> <div class="card-header"> <h4 style="text-align:center;">Signin to your account to start using Kits and Cleats Dashboard</h4> </div> <div class="card-body"> <form method="POST" action="#" class="needs-validation" novalidate=""> <div class="form-group"> <label for="email">Username</label> <input id="email" type="text" class="form-control" name="username" tabindex="1" required autofocus> <div class="invalid-feedback" id="email_msg"> Please fill in your Userame </div> </div> <div class="form-group"> <div class="d-block"> <label for="password" class="control-label">Password</label> <div class="float-right"> <!-- <a href="auth-forgot-password.html" class="text-small"> Forgot Password? </a> --> </div> </div> <input id="pass" type="password" class="form-control" name="pass" tabindex="2" required> <div class="invalid-feedback" id="pass_msg"> please fill in your password </div> </div> <div class="form-group"> <button type="submit" class="btn btn-success btn-lg btn-block" tabindex="4" id="log_btn"> Login </button> </div> </form> </div> </div> </div> </div> </div> </section> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $('#log_btn').click(function(){ $('#log_btn').prop('disabled', true); var email = $('#email').val(); var pass = $('#pass').val(); var remember = $('#remember').val(); if(email == ''){ $('#email_msg').slideDown(); $('#email_msg').delay(500).fadeOut(); $('#log_btn').prop('disabled', false); }else if(pass == ''){ $('#pass_msg').slideDown(); $('#pass_msg').delay(500).fadeOut(); $('#log_btn').prop('disabled', false); }else{ $.ajax({ url : 'admin_log_action.php', type : 'post', data : { user : email, pass : pass, }, success:function(data){ if(data == 1){ $('#suc_msg').slideDown(); $('#suc_msg').delay(1500).fadeOut(); $('#log_btn').prop('disabled', false); window.location = 'index.php'; }else{ //alert(data); $('#er_msg').slideDown(); $('#er_msg').delay(1500).fadeOut(); $('#log_btn').prop('disabled', false); } } }); } }); </script> </div> <!-- General JS Scripts --> <script src="assets/js/app.min.js"></script> <!-- JS Libraies --> <!-- Page Specific JS File --> <!-- Template JS File --> <script src="assets/js/scripts.js"></script> <!-- Custom JS File --> <script src="assets/js/custom.js"></script> </body> </html>