Your IP : 3.145.105.85


Current Path : /home/lentoinv/reloxpropertiesltd.com/
Upload File :
Current File : /home/lentoinv/reloxpropertiesltd.com/resetpassword.php

<?php
session_start(); ob_start();
require_once('includes/headerquery.php');
?>
<!doctype html>
<html class="no-js" lang="zxx">

<head>
    <meta charset="utf-8">
    <meta http-equiv="x-ua-compatible" content="ie=edge">
    <title>Password Reset</title>
    <meta name="robots" content="noindex, follow" />
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Place favicon.png in the root directory -->
    <link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
    <!-- Font Icons css -->
    <link rel="stylesheet" href="css/font-icons.css">
    <!-- plugins css -->
    <link rel="stylesheet" href="css/plugins.css">
    <!-- Main Stylesheet -->
    <link rel="stylesheet" href="css/style.css">
    <!-- Responsive css -->
    <link rel="stylesheet" href="css/responsive.css">
        <style type="text/css">
        nav lis{text-transform: uppercase;}
    </style>
</head>

<body>
    <!--[if lte IE 9]>
        <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
    <![endif]-->

    <!-- Add your site or application content here -->

<!-- Body main wrapper start -->
<div class="body-wrapper">

  <?php include('head.php'); ?>

    <div class="ltn__utilize-overlay"></div>

    <!-- BREADCRUMB AREA START -->
    <div class="ltn__breadcrumb-area text-left bg-overlay-white-30 bg-image p-5"  data-bs-bg="img/bg/14.jpg">
        <div class="container">
            <div class="row">
                <div class="col-lg-12">
                    <div class="ltn__breadcrumb-inner">
                        <h1 class="page-title">Account</h1>
                        <div class="ltn__breadcrumb-list">
                            <ul>
                                <li><a href="index.html"><span class="ltn__secondary-color"><i class="fas fa-home"></i></span> Home</a></li>
                                <li>Login</li>
                            </ul>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- BREADCRUMB AREA END -->

    <!-- LOGIN AREA START -->
    <div class="ltn__login-area pb-65">
        <div class="container">
            <div class="row">
                <div class="col-lg-12">
                    <div class="section-title-area text-center">
                        <h1 class="section-title">Password Reset</h1>
                        <p>Reset your lost password to create a new one</p>
                    </div>
                </div>
            </div>
            <div class="row">
                <?php if(isset($_SESSION['reset'])){ ?>
                <div class="col-lg-6">
                    <div class="account-login-inner">
                        <form method="POST" class="ltn__form-box contact-form-box">
                            <input type="number" name="code" placeholder="Reset Code" required>
                            <input type="password" name="pass1" placeholder="New password" required>
                            <input type="password" name="pass2" placeholder="Confirm Password" required>
                           <div style="float:right;">
                                    <a href="signin.php">SIGN IN</a>
                                </div> 
                            <div class="btn-wrapper mt-0">
                                
                                <button name="PassReset" class="theme-btn-1 btn btn-block" type="submit">CREATE NEW PASSWORD</button>
                            </div>
                          
                        </form>
                    </div>
                </div>
            <?php } else{ ?>
                <div class="col-lg-6">
                    <div class="account-login-inner">
                        <form method="POST" class="ltn__form-box contact-form-box">
                            <input type="email" name="email" placeholder="Email*" required>
                          <div style="float:right;">
                                    <a href="signin.php">SIGN IN</a>
                                </div> 
                            <div class="btn-wrapper mt-0">
                                
                                <button name="ForgotPassword" class="theme-btn-1 btn btn-block" type="submit">REQUEST PASSWORD RESET</button>
                            </div>
                          
                        </form>
                    </div>
                </div>
            <?php } ?>
                <div class="col-lg-6">
                    <div class="account-create text-center pt-50">
                        <h4>DON'T HAVE AN ACCOUNT?</h4>
                        <p>It's simple and free to create a new account that gives you <br>
                        access to a bundle of Relox Properties opportunities</p>
                        <div class="btn-wrapper">
                            <a href="signup.php" class="theme-btn-1 btn black-btn">CREATE ACCOUNT</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <!-- LOGIN AREA END -->

  <?php include('foot.php') ?>

</div>
<!-- Body main wrapper end -->

    <!-- All JS Plugins -->
    <script src="js/plugins.js"></script>
    <!-- Main JS -->
    <script src="js/main.js"></script>
  
</body>
</html>


?>