| Linux in-mum-web1499.main-hosting.eu 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 Path : /home/u901718425/domains/panel.urbanpillar.in/public_html/ |
| Current File : /home/u901718425/domains/panel.urbanpillar.in/public_html/propertypriority.php |
<?php
include_once "cdn/globle.php";
if(!isset($_SESSION['roll_name']) && $_SESSION['roll_name'] != 'user'){
header('location: /login');
}else{
?>
<!doctype html>
<html lang="en">
<?php
include 'widgets/head.php';
?>
<body class="d-flex">
<div class="messages position-fixed w-100 p-3 top-0 start-0 z-2"></div>
<?php
include 'widgets/aside.php';
?>
<div class="page overflow-y-auto" style="width: calc(100% - 280px); height:100vh;">
<?php
include 'widgets/header.php';
?>
<div class="w-100 px-3 mb-3">
<form onsubmit="return false" class="accordion w-auto mx-4 shadow rounded-4 overflow-hidden" id="propertySearch">
<div class="accordion-item border-0">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Search Property
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#propertySearch">
<div class="accordion-body">
<div class="row g-3 w-100 mt-4">
<div class="col-3 col-sm-12 col-md-3 mb-3">
<label for="" class="form-label">Property Name</label>
<input type="text" class="form-control" name="title" id="title" placeholder="Search Title of Project"/>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="w-100 px-3 mb-3">
<div class="sect w-auto mx-4 shadow rounded-4 ">
<div class="fs-6 fw-semibold table_name">Projects</div>
<div class="table-responsive fs-8 mt-3 ">
<table class="table">
<thead>
<tr>
<th class="text-secondary " scope="col">PROJET</th>
<th class="text-secondary " scope="col">PRIORITY</th>
</tr>
</thead>
<tbody id="Projects" class=" overflow-y-auto " style="height: 400px;">
</tbody>
</table>
</div>
<div class="d-flex p-2 justify-content-end">
<button class="btn btn-success d-flex gap-2 align-items-center" id="downloadexel">
<span class="material-icons fs-6">
file_download
</span>
Download
</button>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="/js/propertypriority.js"></script>
<?php
include 'widgets/footer.php';
?>
</div>
</body>
</html>
<?php
}
?>