
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
include 'admin/includes/settings/constant.php';
//include '../includes/settings/db.php';
require_once 'admin/includes/settings/PDODB.php';
include 'admin/includes/modules/functions.php';
$function = new FUNCTIONS();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>RWA Sectore 40 Noida</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/noida40.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="css/bootstrap-dropdownhover.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
</head>
<body>
<?php include_once 'header.php'; ?>
<!-- Page Content -->
<div class="container-fluid padding-0">
<!--about Section-->
<div class="container mt-5">
<div class="row">
<div class="col-md-12">
<h5 class="text-center">PRIVACY POLICY</h5>
<p>
<a href="index.php">rwa40.com</a> has designed its privacy policy to demonstrate its commitment to fair practice. Following are the kind of information which we collect and adhere to strict privacy standards.
</p>
<p><strong>Use of Cookies:</strong></p>
<p>
<a href="index.php">rwa40.com</a> uses the cookie system for its login sessions. This means your browser sets a "cookie" to maintain your login session on your computer. If you choose to remember your password on your computer then this cookie will be created for a period of one year and will automatically expire after one year and if you do not wish to maintain this cookie then please uncheck the option "Remember me" while login. With the “Remember me” option unchecked the cookie will get destroyed after you close the browser.
</p>
<p><strong>Use of IP Address:</strong></p>
<p>
<a href="index.php">rwa40.com</a> does not store or maintain your computer’s IP address.
</p>
<p><strong>Use of Email & Other Personal Details:</strong></p>
<p>
<a href="index.php">rwa40.com</a> records users name, email and password for future login purpose, and which RWA40.com will never sell, rent or disclose to any third party without the consent of the respective users. The details of name, house no and phone numbers are displayed in the member's directory which can be accessed only by the registered members after logging in only. This is only to promote more social interaction between the members.
When a member logs in, he/she automatically gives RWA40.com the permission to display his/her details in the resident's directory, as aforementioned.
</p>
<p><strong>Content Liability & Filtering:</strong></p>
<p>
<a href="index.php">rwa40.com</a> does everything possible to maintain strict content guidelines and uses intelligent filters to filter inappropriate, abusive, racial and adult words. We cannot be held liable for any offence, damage, injury or other legal infraction attributed to such content. <a href="index.php">rwa40.com</a> is a service provider; we are not a content provider.
</p>
<p><strong>Changes:</strong></p>
<p>
<a href="index.php">rwa40.com</a>’s privacy policy changes from time to time and changes are posted on privacy policy page of <a href="index.php">rwa40.com</a>. Please check back often to peruse the amended <a href="index.php">rwa40.com</a>’s privacy policy.
<br><br>
<a href="index.php">rwa40.com</a> IS A WEBSITE OF RWA SECTOR – 40, NOIDA (REGD.) FOR PROVIDING INFORMATION AND UPDATES FROM TIME TO TIME. IF YOU ARE NOT IN AGREEMENT WITH OUR PRIVACY POLICY THEN WE REQUEST YOU TO PLEASE CONTACT OUR OFFICE FOR FURTHER CLARIFICATION.<br><br>
If you still have question about <a href="index.php">rwa40.com</a>’sprivacy policy then please contact us at <a href="mailto:rwasector40noida@gmail.com">rwasector40noida@gmail.com</a>
</p>
</div>
</div>
</div>
<!--end about section-->
</div>
<!-- end Page Content -->
<!-- Footer -->
<?php include_once'footer.php';?>
<!-- End Footer -->
<?php include_once'login.php';?>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/bootstrap-4-hover-navbar.js"></script>
<!--login window-->
<script src="js/jquery.form-validator.min.js"></script>
<script type="text/javascript">
$("#UserLoginForm").validate({
rules: {
username: {
required: true
},
password: {
required: true
}
},
messages: {
username: {
required: "Please enter Username"
},
password: {
required: "Please enter Password"
}
},
submitHandler: function(form) {
form.submit();
}
});
</script>
</body>
</html>


PK 99