
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'; ?>
<!-- banner -->
<header>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<!-- <ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="5"></li>
</ol> -->
<div class="carousel-inner" role="listbox">
<!-- Slide One - Set the background image for this slide in the line below -->
<div class="carousel-item active" style="background-image: url('images/slider001.jpg'); background: no-repeat middle center scroll;">
<!--<div class="carousel-caption d-none d-md-block">
<h3>First Slide</h3>
<p>This is a description for the first slide.</p>
</div>-->
</div>
<div class="carousel-item" style="background-image: url('images/slider002.jpg'); background: no-repeat middle center scroll;">
<!--<div class="carousel-caption d-none d-md-block">
<h3>First Slide</h3>
<p>This is a description for the first slide.</p>
</div>-->
</div>
<div class="carousel-item" style="background-image: url('images/slider003.jpg'); background: no-repeat middle center scroll;">
<!--<div class="carousel-caption d-none d-md-block">
<h3>First Slide</h3>
<p>This is a description for the first slide.</p>
</div>-->
</div>
<div class="carousel-item" style="background-image: url('images/slider004.jpg'); background: no-repeat middle center scroll;">
<!--<div class="carousel-caption d-none d-md-block">
<h3>First Slide</h3>
<p>This is a description for the first slide.</p>
</div>-->
</div>
<div class="carousel-item" style="background-image: url('images/slider005.jpg'); background: no-repeat middle center scroll;">
<!--<div class="carousel-caption d-none d-md-block">
<h3>First Slide</h3>
<p>This is a description for the first slide.</p>
</div>-->
</div>
<div class="carousel-item" style="background-image: url('images/slider006.jpg'); background: no-repeat middle center scroll;">
<!--<div class="carousel-caption d-none d-md-block">
<h3>First Slide</h3>
<p>This is a description for the first slide.</p>
</div>-->
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</header>
<!--end banner -->
<!-- Page Content -->
<div class="container-fluid padding-0">
<!--about Section-->
<div class="container mt-5">
<div class="row">
<div class="col-lg-4 mb-4 home-about-mt">
<h4 class="italic">Welcome To</h4>
<div class="mb-4">
<h2><span>RWA Noida</span> Sector 40</h2>
</div>
<p style="text-align: justify;">
RWA Sector 40, Noida is a registered society registered under Registration of Society Act, 1860. We are a self help group formed in the year 1996 to cater to the problems of sector 40 and representing it collectively in front of Noida Authority and other Government departments.
</p>
<a href="about-rwa.php" class="readmore">Know More <i class="fa fa-arrow-right" aria-hidden="true"></i></a>
</div>
<div class="col-lg-8 mb-8">
<img src="images/about.jpg" class="img-responsive">
</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>
</body>
</html>


PK 99