JezK
Edit File: index.php
<?php include("header.php"); include("app/getCareersDataApp.php"); include("app/getCareersApp.php"); if (isset($_SESSION['saveSuccess'])) { include('app/sendMail.php'); echo "<script>alert('Details saved successfully.');</script>"; unset($_SESSION['saveSuccess']); } if (isset($_SESSION['saveFailed'])) { echo "<script>alert('Error!!! Unable to save details. Internal server error.');</script>"; unset($_SESSION['saveFailed']); } ?> <link rel="stylesheet" href="css/style.css"> <div id="page-10717" class="post-10717 page type-page status-publish hentry"> <div class="vc_row wpb_row vc_row-fluid vc_custom_1607513102331"> <div class="wpb_column vc_column_container vc_col-sm-6"> <div class="vc_column-inner"> <div class="wpb_wrapper"> <div class="wpb_single_image wpb_content_element vc_align_center"> <figure class="wpb_wrapper vc_figure"> <div class="vc_single_image-wrapper vc_box_border_grey"><img width="570" height="518" src="/wp-content/uploads/2020/12/Careers.png" class="vc_single_image-img attachment-full" alt="" /></div> </figure> </div> </div> </div> </div> <div class="wpb_column vc_column_container vc_col-sm-5"> <div class="vc_column-inner"> <div class="wpb_wrapper"> <div class="selectDepartment">  <label class="selectLabel">Select Position:</label><br> <select class="selectOption" id="positionID" name="positionID"> <option value="0">All Positions</option> <?php echo $positions; ?> </select> </div> <div class="selectDiv">  <label class="selectLabel">Select Location:</label> <select class="selectOption" id="locationID" name="locationID"> <option value="0">All Locations</option> <?php echo $locationDetails; ?> </select> </div> <div class="selectDiv btn-wrap d-flex justify-content-center" style="padding-bottom:10px;"> <input type="button" class="btn btn-default theme-color-bg" value="Search" onclick="getApplicationsBySearch()"> </div> </div> <div id="all"> <?php echo $careers; ?> </div> </div> </div> </div> </div> <div class="vc_row wpb_row vc_row-fluid vc_custom_1607513109880"> <div class="wpb_column vc_column_container vc_col-sm-12"> <div class="vc_column-inner"> <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element "> <div class="wpb_wrapper"> <h2 class="selectDiv" style="text-align: center;"><span style="color: #5c0b0b;"><a class="md-trigger selectLabel" style="color: #5c0b0b;" data-modal="albdesign-modal-8079"><strong>General Instructions</strong></a></span> </h2> <div></div> <div class="shortcode-list arrow3"> <ul> <li><i class="fa fa-chevron-right" aria-hidden="true"></i> Decision of the NABFINS in all matters regarding eligibility of the candidate, the stages at which such scrutiny of eligibility is to be undertaken, the documents to be produced at the time of selection etc. and any other matter relating to recruitment will be final and binding on the candidates. No correspondence or personal enquiries shall be entertained by the Nabfins in this regard.</li> <li><i class="fa fa-chevron-right" aria-hidden="true"></i> Nabfins reserves the right to reject any application/ candidature at any stage without assigning any reason and the decision of the Nabfins shall be final.</li> <li><i class="fa fa-chevron-right" aria-hidden="true"></i> For any clarifications candidates may contact at careers@nabfins.org or at 080 26970500.</li> <li class="d-block"><i class="fa fa-chevron-right" aria-hidden="true"></i>Canvassing in any form will be a disqualification. </li> </ul> </div> </div> </div> <div class="wpb_wrapper"> <h2 class="selectDiv" style="text-align: center;"><span style="color: #5c0b0b;"><a class="md-trigger selectLabel" style="color: #5c0b0b;" data-modal="albdesign-modal-8079"><strong>Disclaimer:</strong></a></span></h2> <div></div> <div class="shortcode-list arrow3"> <p>Any person dealing with unauthorized parties or websites regarding job opportunities with NABFINS Ltd in lieu of money or at free cost, is doing so at his/her own risk. NABFINS Ltd will not have any obligation to honour terms of any fake offer letter so issued, or provide employment to anyone who has been issued a fraudulent offer letter. Further, NABFINS Ltd is not responsible for any losses (monetary or otherwise) including but not limited to loss of data that are incurred as a consequence.</p> <p>In case you come across any person or organization demanding money in lieu of an offer letter for a job opportunity in NABFINS Ltd, you are encouraged to bring such matters to our attention by reporting to <a href="mailto:careers@nabfins.org">careers@nabfins.org.</a></p> <p>Candidates are advised to check details of recruitments from the careers page of website <a href="https://nabfins.org/">(www.nabfins.org)</a></p> </div> </div> </div> </div> </div> </div> </div> </div> <script> function getApplicationsBySearch() { // alert("hello"); // document.write(positionID); positionID = document.getElementById('positionID').value; locationID = document.getElementById('locationID').value; window.location = 'index.php?p=' + positionID + '&l=' + locationID } </script> <style> /*@media (max-width:768px)*/ /*{*/ i.fa.fa-search { display: none !important; } /*}*/ @media (max-width:768px) { ul li { font-size: 16px !important; } } </style> <?php include("footer.php"); ?>