X7ROOT File Manager
Current Path:
/home/hamdjcne/app.hamdalillahitravel.com/app/Views/auth
home
/
hamdjcne
/
app.hamdalillahitravel.com
/
app
/
Views
/
auth
/
ðŸ“
..
📄
forgot.php
(9.01 KB)
📄
login.php
(8.21 KB)
📄
profile.php
(52.12 KB)
📄
register.php
(23.03 KB)
Editing: forgot.php
<?php use App\Models\Crud; $this->Crud = new Crud(); ?> <!DOCTYPE html> <html lang="en"> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack --> <head> <title><?= $title; ?></title> <meta charset="utf-8" /> <meta name="description" content="<?= app_meta_desc; ?> " /> <meta name="keywords" content="fuel,order,payment" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta property="og:locale" content="en_US" /> <link rel="shortcut icon" href="<?= site_url(); ?>assets/favicon.png" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,400,500,600,700" /> <link href="<?= site_url(); ?>assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css" /> <link href="<?= site_url(); ?>assets/css/style.bundle.css" rel="stylesheet" type="text/css" /> <script> // Frame-busting to prevent site from being loaded within a frame without permission (click-jacking) if (window.top != window.self) { window.top.location.replace(window.self.location.href); } </script> </head> <!--end::Head--> <!--begin::Body--> <body id="kt_body" class="app-blank bgi-size-cover bgi-attachment-fixed bgi-position-center bgi-no-repeat"> <!--begin::Theme mode setup on page load--> <script> var defaultThemeMode = "system"; var themeMode; if (document.documentElement) { if (document.documentElement.hasAttribute("data-bs-theme-mode")) { themeMode = document.documentElement.getAttribute("data-bs-theme-mode"); } else { if (localStorage.getItem("data-bs-theme") !== null) { themeMode = localStorage.getItem("data-bs-theme"); } else { themeMode = defaultThemeMode; } } if (themeMode === "system") { themeMode = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light"; } document.documentElement.setAttribute("data-bs-theme", themeMode); } </script> <div class="d-flex flex-column flex-root" id="kt_app_root"> <style> body { background-image: url('<?= site_url(); ?>assets/media/auth/bg9.jpg'); } [data-bs-theme="dark"] body { background-image: url('<?= site_url(); ?>assets/media/auth/bg9.jpg'); } </style> <!--begin::Authentication - Sign-in --> <div class="d-flex flex-column bg-image-div flex-column-fluid flex-lg-row "> <!--begin::Aside--> <div class="d-flex flex-center flex-lg-start w-lg-50 pt-15 pt-lg-0 px-10"> <!--begin::Aside--> <div class="logo-container d-flex flex-column"> <!--begin::Logo--> <a href="<?= site_url(); ?>" class="logo-link mb-7"> <img alt="Logo" height="100px" src="<?= site_url(); ?>assets/logo.png" class="logo-img"/> </a> <!--end::Logo--> </div> <!--end::Aside--> </div> <div class="d-flex flex-column-fluid flex-lg-row-auto justify-content-center justify-content-lg-end p-4 p-lg-20"> <!--begin::Card--> <div class="bg-body d-flex flex-column align-items-stretch flex-center rounded-4 w-md-600px p-15 p-lg-10"> <!--begin::Wrapper--> <div class="d-flex flex-center flex-column flex-column-fluid pb-15 pb-lg-20"> <div class="text-center mb-11"> <!--begin::Title--> <h1 class="text-gray-900 fw-bolder mb-3"> <?=translate_phrase('Reset Password'); ?> </h1> <!--end::Title--> <!--begin::Subtitle--> <div class="text-gray-500 fw-semibold fs-6"> <?=translate_phrase('If you forgot your password, well, then we’ll email you instructions to reset your password.'); ?> </div> <!--end::Subtitle---> </div> <?php echo form_open_multipart('auth/forgot/code', array('id'=>'bb_ajax_form', 'class'=>'form w-100')); ?> <div class="row mb-3"><div id="bb_ajax_msg"></div></div> <div class="fv-row mb-8"> <!--begin::Email--> <input type="text" placeholder="Email" name="email" autocomplete="off" class="form-control bg-transparent" /> <!--end::Email--> </div> <!--begin::Submit button--> <div class="d-grid mb-10"> <button type="submit" id="bb_ajax_btn" class="btn btn-success"><?=translate_phrase('Send Reset Link'); ?></button> </div> </form> <?php echo form_open_multipart('auth/forgot/confirm_code', array('id'=>'bb_ajax_form2', 'class'=>'form w-100', 'style'=>'display:none')); ?> <div class="row"><div id="bb_ajax_msg2"></div></div> <div class="fv-row mb-8"> <!--begin::Email--> <input type="text" name="code" autocomplete="off" class="form-control bg-transparent" placeholder="<?=translate_phrase('Enter Code');?>" required /> <!--end::Email--> </div> <div class="d-grid mb-10"> <button class="btn btn-success"><?=translate_phrase('Confirm Code');?></button> </div> <?=form_close();?> <?php echo form_open_multipart('auth/forgot/password', array('id'=>'bb_ajax_form3', 'class'=>'form w-100', 'style'=>'display:none')); ?> <div class="row"><div id="bb_ajax_msg3"></div></div> <div class="fv-row mb-8"> <!--begin::Email--> <input type="password" name="password" autocomplete="off" class="form-control bg-transparent" placeholder="<?=translate_phrase('Enter New Password');?>" required /> <!--end::Email--> </div> <div class="d-grid mb-10"> <button class="btn btn-success"><?=translate_phrase('Submit');?></button> </div> <?=form_close();?> <div class="text-gray-500 text-center fw-semibold fs-6"> <a href="<?=site_url('auth/login');?>" class="link-success"> <?=translate_phrase('Return to Login');?> </a> </div> </div> <!--end::Wrapper--> </div> <!--end::Card--> </div> <!--end::Body--> </div> <script src="<?= site_url(); ?>assets/plugins/global/plugins.bundle.js"></script> <script src="<?= site_url(); ?>assets/js/scripts.bundle.js"></script> <script src="<?= site_url(); ?>assets/js/jsform.js"></script> <script> var site_url = '<?=site_url(); ?>'; function lang_session(lang_id){ if(lang_id !== ''){ $.ajax({ url: site_url + 'auth/language/' + lang_id, success: function (data) { $('#bb_ajax_msg').html(data); } }); } } function togglePasswordVisibility() { const passwordInput = document.getElementById("password"); const toggleIcon = document.getElementById("togglePasswordIcon"); if (passwordInput.type === "password") { passwordInput.type = "text"; toggleIcon.classList.remove("fa-eye"); toggleIcon.classList.add("fa-eye-slash"); } else { passwordInput.type = "password"; toggleIcon.classList.remove("fa-eye-slash"); toggleIcon.classList.add("fa-eye"); } } </script> </body> </html>
Upload File
Create Folder