hjkhghopjkertteerterterterertertrtoirh
bnmbertsurhetertertertertertertertpdf'tdfg
/
home
/
u313348419
/
domains
/
paramedicalcouncilup.org
/
public_html
/
institute
/
Upload FileeE
HOME
<!DOCTYPE html> <html lang="en"> <head> <title>Institute | Login Form</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="../images/favicon.png" rel="shortcut icon" type="image/png"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> </head> <body> <div class="container mt-3"> <section class="vh-50" > <div class="container py-5 h-100"> <div class="row d-flex justify-content-center align-items-center h-100"> <div class="col col-xl-10"> <div class="card" style="border-radius: 1rem;"> <div class="row g-0"> <div class="col-md-6 col-lg-5 d-none d-md-block"> <img src="images/acccc.webp" alt="login form" class="img-fluid" style="border-radius: 1rem 0 0 1rem;" /> </div> <div class="col-md-6 col-lg-7 d-flex align-items-center"> <div class="card-body p-4 p-lg-5 text-black"> <div class="d-flex align-items-center mb-3 pb-1"> <i class="fas fa-cubes fa-2x me-3" style="color: #ff6219;"></i> <!--<span class="h1 fw-bold mb-0">Logo</span>--> </div> <h5 class="fw-normal mb-3 pb-3" style="letter-spacing: 1px;">Login to your account</h5> <div class="form-outline mb-4"> <input type="email" id="email" class="form-control form-control-lg" /> <label class="form-label" for="form2Example17">User Id</label> </div> <div class="form-outline mb-4"> <input type="password" id="pass" class="form-control form-control-lg" /> <label class="form-label" for="form2Example27">Password</label> </div> <div class="pt-1 mb-4"> <button class="btn btn-dark btn-lg btn-block" id="login" type="button">Login</button> </div> <a class="small text-muted" href="#!">Forgot password?</a> </div> </div> </div> </div> </div> </div> </div> </section> </div> </body> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> $(document).ready(function(){ $("#login").click(function(){ var email = $("#email").val(); var pass = $("#pass").val(); var obj = {email,pass}; $.ajax({ url: "auth.php", type: "POST", data: obj, success: function(resp){ if(resp == 1){ window.location.href = 'index.php'; } else { alert('worng User id or Password'); } } }); }); }) </script> </html>