ok
Direktori : /home2/selectio/public_html/frames-hub/ |
Current File : /home2/selectio/public_html/frames-hub/forgot-password.php |
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!--favicon--> <link rel="icon" href="assets/images/favicon-32x32.png" type="image/png" /> <!--plugins--> <link href="assets/plugins/simplebar/css/simplebar.css" rel="stylesheet" /> <link href="assets/plugins/perfect-scrollbar/css/perfect-scrollbar.css" rel="stylesheet" /> <link href="assets/plugins/metismenu/css/metisMenu.min.css" rel="stylesheet" /> <!-- loader--> <link href="assets/css/pace.min.css" rel="stylesheet" /> <script src="assets/js/pace.min.js"></script> <!-- Bootstrap CSS --> <link href="assets/css/bootstrap.min.css" rel="stylesheet"> <link href="assets/css/bootstrap-extended.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet"> <link href="assets/css/app.css" rel="stylesheet"> <link href="assets/css/icons.css" rel="stylesheet"> <title>Forget Password - Speedconnect</title> </head> <body class=""> <!--wrapper--> <div class="wrapper"> <div class="section-authentication-cover"> <div class=""> <div class="row g-0"> <div class="col-12 col-xl-7 col-xxl-8 auth-cover-left align-items-center justify-content-center d-none d-xl-flex"> <div class="card shadow-none bg-transparent shadow-none rounded-0 mb-0"> <div class="card-body"> <img src="assets/images/login-images/forgot-password-cover.svg" class="img-fluid" width="500" alt=""/> </div> </div> </div> <div class="col-12 col-xl-5 col-xxl-4 auth-cover-right align-items-center justify-content-center" style="background-color:#182333;color:white;"> <div class="card rounded-0 m-3 shadow-none bg-transparent mb-0"> <div class="card-body p-sm-5"> <div class="p-3"> <div class="mb-3 text-center"> <img src="assets/img/speedconnect-logo.png" width="220" alt=""> </div> <div class="text-center"> <img src="assets/images/icons/forgot-2.png" width="100" alt="" /> </div> <h4 class="mt-5 font-weight-bold">Forgot Password?</h4> <p class="text-muted">Enter your registered email ID to reset the password</p> <div class="my-4"> <label class="form-label">Email id</label> <input type="text" class="form-control" placeholder="example@user.com" /> </div> <div class="d-grid gap-2"> <button type="button" class="btn btn-primary">Send</button> <a href="login.php" class="btn btn-light"><i class='bx bx-arrow-back me-1'></i>Back to Login</a> </div> </div> </div> </div> </div> </div> <!--end row--> </div> </div> </div> <!--end wrapper--> <!-- Bootstrap JS --> <script src="assets/js/bootstrap.bundle.min.js"></script> <!--plugins--> <script src="assets/js/jquery.min.js"></script> <script src="assets/plugins/simplebar/js/simplebar.min.js"></script> <script src="assets/plugins/metismenu/js/metisMenu.min.js"></script> <script src="assets/plugins/perfect-scrollbar/js/perfect-scrollbar.js"></script> <!--Password show & hide js --> <script> $(document).ready(function () { $("#show_hide_password a").on('click', function (event) { event.preventDefault(); if ($('#show_hide_password input').attr("type") == "text") { $('#show_hide_password input').attr('type', 'password'); $('#show_hide_password i').addClass("bx-hide"); $('#show_hide_password i').removeClass("bx-show"); } else if ($('#show_hide_password input').attr("type") == "password") { $('#show_hide_password input').attr('type', 'text'); $('#show_hide_password i').removeClass("bx-hide"); $('#show_hide_password i').addClass("bx-show"); } }); }); </script> <!--app JS--> <script src="assets/js/app.js"></script> </body> </html>