JezK
Edit File: index.php
<?php // echo 'hii';exit; error_reporting(0); session_start(); include('adm_operations.php'); include('../settings_config.php'); $operations = new adm_operations(); $appdetails = $operations->gettingAppDetails(); if (isset($_POST['signin'])) { $result = $operations->admin_login($_POST['email'], $_POST['password']); // print_r($result);exit; if ($result == 'no_access') { echo "<script>alert('Your account has been Deactivated. Please contact the school');</script>"; //Sorry! you have no access to School Web Portal Contact School Admin for more Details } else if ($result == 'closed') { echo "<script>alert('Your School has been deactivated. Please contact Admin');</script>"; } else if ($result == ERR202) { echo "<script>alert('Invalid credentials');</script>"; } else if ($result == 'noay') { echo "<script>alert('The next Academic Year has not started. You would be able to log in once the next Academic Year starts');</script>"; } else { $_SESSION['child']['accesskey'] = $result['accesskey']; $_SESSION['child']['myprev'] = $result['privileges']; $_SESSION['child']['log_school_id'] = $result['school_id']; $_SESSION['child']['auth_id'] = $result['me_id']; $_SESSION['child']['school_name'] = $result['school_name']; $_SESSION['clogin'] = $result['guest']; $_SESSION['child']['su'] = $result['school_su']; $year = $operations->getcurrentacademicyear($result['school_id'],); if ($year == ERR212) { $_SESSION['child']['current_academic_id'] = 'Not defined'; $_SESSION['child']['cur_year_name'] = 'Not defined'; $_SESSION['child']['choosen_academic_id'] = 'Not defined'; $_SESSION['child']['choosen_year_name'] = 'Not defined'; header('Location:academicyear_management.php'); } else { $_SESSION['child']['current_academic_id'] = $year['academic_id']; $_SESSION['child']['cur_year_name'] = $year['academic_name']; $_SESSION['child']['choosen_academic_id'] = $year['academic_id']; $_SESSION['child']['choosen_year_name'] = $year['academic_name']; //header('Location:academicyear_management.php'); header('Location:dashboard.php'); } } } if (isset($_POST['forgot_email'])) { //$operations=new adm_operations(); $password = $operations->forgotpwd_sendpasswordbyemail($_POST['forgot_email']); if ($password == 1) { echo "<script>alert('Password sent to your mail');</script>"; } if ($password == 2) { echo "<script>alert('Password sent failed');</script>"; } if ($password == 3) { echo "<script>alert('Invalid Mobile Number');</script>"; } } ?> <!DOCTYPE HTML> <html> <head> <title><?php echo $appdetails['app_name']; ?> Admin</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href='https://fonts.googleapis.com/css?family=Rokkitt' rel='stylesheet' type='text/css'> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-aFq/bzH65dt+w6FI2ooMVUpc+21e0SRygnTpmBvdBgSdnuTN7QbdgL+OapgHtvPp" crossorigin="anonymous"> <link rel="shortcut icon" href="uploads/skoolonline.png" / width="16px" height="auto"> <link href="css/schadmstartup.css" rel="stylesheet" type='text/css'> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha2/dist/js/bootstrap.min.js" integrity="sha384-heAjqF+bCxXpCWLa6Zhcp4fu20XoNIA98ecBC1YkdXhszjoejr5y9Q77hIrv8R9i" crossorigin="anonymous"></script> <script> function verifyfields() { var email = document.getElementById('email').value; var password = document.getElementById('password').value; //var regex1=/^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/; var regex1 = /^[0-9]*$/; if (email == '') { alert('Please enter User Name'); return false; } else if (!regex1.test(email)) { alert('Please enter a valid User Name'); return false; } else if (password == '') { alert('Please enter your Password'); return false; } } function check_email() { var email = document.getElementById('forgot_email').value; //var regex1=/^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$/; var regex1 = /^[0-9]*$/; if (email == '') { alert('Please enter User Name'); return false; } else if (!regex1.test(email)) { alert('Please enter a valid User Name'); return false; } } </script> <style> .prihead { font-family: 'Corbel', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; text-align: left; text-decoration: underline; } .pricontent { font-family: 'Corbel', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; text-align: justify; margin-top: 2%; } .prihigh { font-family: 'Corbel', Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; text-align: left; font-style: italic; } </style> </head> <body> <div class="wrap"> <!-- strat-contact-form --> <div class="contact-form bg-body m-auto d-md-flex p-3"> <!-- start-form --> <div class="col-12 col-md-6 p-5"> <form method="post" name="contact_form"> <div class="text-center"> <img class="img" src="<?php echo $appdetails['app_logo']; ?>" height="auto" width=""> </div> <div class="my-3"> <input type="text" name="email" id="email" placeholder="10 Digit Mobile Number" class="form-control" value="<?= $_POST['email']; ?>" required maxlength="10"> <? if (isset($_POST['email'])) 'autofocus'; ?> </div> <div class="my-1"><input type="password" name="password" id="password" placeholder="Password" class="form-control" required></div> <div> <input type="submit" name="signin" value="Login" onclick="return verifyfields()" class="log-in-button" /> <div class="clear"></div> </div> <div class="d-flex justify-content-between"> <div class=" forgot-pass"> <a href="javascript:void(0);" data-bs-target="#terms" data-bs-toggle="modal">T&C</a> </div> <div class=" forgot-pass "> <a href="#" data-bs-toggle="modal" data-bs-target="#pwdModal">Forgot password?</a> </div> </div> </form> </div> <div class=" col-12 col-md-6 d-flex justify-content-center"> <div class="img"> <img src=" images/Login-logo1.png"> <div class="clear"></div> </div> </div> </div> <!-- <form class="contact_form" method="post" name="contact_form"> --> <!--<img class="img" src="images/logo.png" height="60" width="" style=" display:block; margin-left: 60px;margin-right:px;margin-top:45px;margin-bottom:15px; " >--> <!-- <img class="img" src="<?php echo $appdetails['app_logo']; ?>" height="auto" style=" display:block; margin-left: 60px;margin-right:px;margin-top:45px;margin-bottom:15px; "> <ul> <li> <input type="text" class="textbox1" name="email" id="email" placeholder="10 Digit Mobile Number" style="margin-top:4px;" value="<?= $_POST['email']; ?>" <? if (isset($_POST['email'])) echo 'autofocus'; ?> maxlength="10"> </li> <li> <input type="password" class="textbox2" name="password" id="password" placeholder="Password" style="margin-top:4px;"> </li> </ul> <input type="submit" name="signin" value="Login" onclick="return verifyfields()" /> <div class="clear"></div> <div class="row"> <div class="col-md-4 col-md-offset-1" style=" top:-20px;"> --> <!--<a href="schoolsignup.html" style="font-family:Arial, Helvetica, sans-serif;font-style:normal;font-size:13px; color:#01aee6;">Sign up</a>--> <!-- </div> <div class="col-md-5 col-md-offset-1" style=" top:-20px; margin-left:15px;"> <a href="javascript:void(0);" data-target="#pwdModal" data-toggle="modal" class="forgotStyle">Forgot password?</a> <a href="javascript:void(0);" data-target="#terms" data-toggle="modal" class="tcStyle">T&C</a> </div> </div> <div class="clear"></div> </form> --> <!-- end-form --> <!-- start-account --> <!-- <div class="account"> <div class="img"> <img src="images/Login-logo-new.png"> <div class="clear"></div></a> </div> </div> --> <!-- end-account --> <!-- <div class="clear"></div> --> <!-- </div> --> <!-- end-contact-form --> <!--terms and conditions--> <!-- Modal --> <div class="modal modal_home fade" id="terms" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content" style="height:600px;overflow: scroll;"> <div class="modal-body"> <b class="prihead">Terms & Conditions</b> <p class="pricontent"> Usage of products, applications and services offered by <?php echo $appdetails['app_name']; ?> Education Solutions Private Limited(“<b class="prihigh"><?php echo $appdetails['app_name']; ?></b>”)is governed by the following terms and conditions(<b class="prihigh">"Terms of Use"</b> )website or uses any of the <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> </p> <p class="pricontent"> When <b class="prihigh">YOU</b> or any of <b class="prihigh">YOUR </b> customers, associates, employees, colleagues, partners or any individual/third party authorized by <b class="prihigh">YOU</b> (collectively referred as <b class="prihigh">“YOU”</b>), use any of the products, applications or services, <b class="prihigh">YOU</b> will be subjected to the terms and conditions applicable to such products, applications or services and the associated number of licenses of such products, applications or services purchased by <b class="prihigh">YOU</b> and they shall be deemed to be incorporated into this Terms of Use. <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> reserves the right, at its sole discretion, to change, modify, add or remove portions of these Terms of Use, at any time. It is <b class="prihigh">YOUR </b> responsibility to check these Terms of Use periodically for changes. <b class="prihigh">YOUR</b> continued use of our products, applications and services through any channel (website, mobile or any other channel) following the posting of changes will mean that <b class="prihigh">YOU </b> accept and agree to the changes. </p> <p class="pricontent"> <b class="prihigh">Accessing, Browsing or Otherwise using <?php echo $appdetails['app_name']; ?> products, applications and services implies that YOU have read this agreement carefully and that YOU agree to the Terms and Conditions outlined below</b> </p> <p class="pricontent"> These Terms and Conditions will be applicable to <b class="prihigh">YOU </b>when <b class="prihigh">YOU </b> either procure the products, applications and services from <b class="prihigh"><?php echo $appdetails['app_name']; ?> </b> or intend to procure the products, applications and services offered by <b class="prihigh"><?php echo $appdetails['app_name']; ?> </b> or browse through or use the publicly available resources of <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> or related to<b class="prihigh"><?php echo $appdetails['app_name']; ?>.</b> </p> <br> <b class="prihead">Confidentiality of YOUR Personal Records </b> <p class="pricontent"> When <b class="prihigh">YOU </b>purchase <b class="prihigh"><?php echo $appdetails['app_name']; ?></b>, <b class="prihigh">YOU </b> will need to create a User ID and Password on <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> portal in order to use the products, applications and services offered by <b class="prihigh"><?php echo $appdetails['app_name']; ?></b>. <b class="prihigh">YOU</b> shall therefore be responsible for all activities that <b class="prihigh">YOU </b> undertake under that User ID and Password. <b class="prihigh">YOU</b> will not disclose or share <b class="prihigh">YOUR</b> User Id and Password to anyone else. <b class="prihigh">YOU </b> shall be responsible for frequently changing <b class="prihigh">YOUR</b> password for the products, applications and services used by <b class="prihigh">YOU</b>. </p> <p class="pricontent"> <b class="prihead">Right to Block / Disable / Terminate Access Temporarily or Permanently</b> </p> <p class="pricontent"> If <b class="prihigh">YOU </b>provide information that is untrue, inaccurate, not current or incomplete or <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> has reasonable grounds to suspect that the information provided by <b class="prihigh">YOU</b> is untrue, inaccurate, not current or incomplete, or not in accordance with the Terms of Use, then <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> shall have the right to temporarily or permanently disable or terminate or block <b class="prihigh">YOUR </b> access to <b class="prihigh"><?php echo $appdetails['app_name']; ?></b> products, applications and services and revoke all licenses purchased by <b class="prihigh">YOU </b> for the said products, applications and services. </p> <p class="pricontent"> <b class="prihead">Communications</b> </p> <p class="pricontent"> When<b class="prihead">YOU </b> use our products, applications and services or send emails or other data, information or communication to us, <b class="prihead">YOU </b> agree and understand that <b class="prihead">YOU</b> are communicating with us through electronic records and <b class="prihead">YOU </b> consent to receive communications via electronic records from us periodically and as and when required. </p> <p class="pricontent"> <b class="prihead">Charges</b> There are no charges or fee for browsing products on <b class="prihead"><?php echo $appdetails['app_name']; ?></b> website. However, <b class="prihead">YOU</b> can choose to purchase requisite number of licenses for the products, applications and services offered by <b class="prihead"><?php echo $appdetails['app_name']; ?></b> by paying a one time or recurring fee including maintenance and renewal fee, as the case may be, as mutually agreed between <b class="prihead">YOU</b> and <b class="prihead"><?php echo $appdetails['app_name']; ?></b> in accordance with the schedule of payments agreed between YOU and <b class="prihead"><?php echo $appdetails['app_name']; ?></b>. </p> <p class="pricontent"> In case a new product, application and service is introduced or new features are added to an existing product, application and service by <b class="prihead"><?php echo $appdetails['app_name']; ?></b>, then <b class="prihead"><?php echo $appdetails['app_name']; ?> </b>reserves the right to charge separately for the same with prior intimation to <b class="prihead">YOU</b>. In case any new charge or fee is introduced / or the existing charge or fee is changed for any existing product, application or service, the charge and the date of application of the changes shall be communicated to <b class="prihead">YOU</b> via electronic/physical means or during sales discussions between <b class="prihead">YOU </b>and <b class="prihead"><?php echo $appdetails['app_name']; ?></b>. </p> <p class="pricontent"> Every product, application or service offered by <b class="prihead"><?php echo $appdetails['app_name']; ?></b> can be purchased for a fee. Such prices may not remain fixed and can be changed at the sole discretion of <b class="prihead"><?php echo $appdetails['app_name']; ?></b>. </p> <p class="pricontent"> <b class="prihead"> Use of the <?php echo $appdetails['app_name']; ?> products, applications and services</b> Use of <b class="prihead"><?php echo $appdetails['app_name']; ?></b> products, applications and services shall be strictly governed by the following binding principles: <br /> 1.<b class="prihead"> YOU</b> shall not modify / update any information that has not been posted / hosted by <b class="prihead"> YOU </b><br /> 2.<b class="prihead"> YOU </b> shall not host, display, upload, publish, transmit, or share any information which:<br /> (a) Belongs to another person unless<b class="prihead"> YOU </b>are authorized by the person for the same <br /> (b)<b class="prihead"> YOU</b> do not have any right to do so<br /> (c) Is grossly harmful, harassing, blasphemous, defamatory, obscene, pornographic or sexually explicit, paedophilic, libellous, invasive of another's privacy, hateful, racist, bigotry, offensive to any community, ethnically objectionable, disparaging, relating or encouraging money laundering or gambling, or encouraging hatred or physical harm against any group or individual, or otherwise unlawful in any manner whatsoever; or unlawfully threatening or unlawfully harassing including but not limited to "indecent representation of women" within the meaning of the Indecent Representation of Women (Prohibition) Act, 1986;<br /> (d) Is misleading<br /> (e) Involves the transmission of "junk mail”, or unsolicited mass mailing or "spamming";<br /> (f) Infringes upon or violates any third party's rights [including, but not limited to, intellectual property rights, rights of privacy (including without limitation unauthorized disclosure of a person's name, email address, physical address or phone number) or rights of publicity];<br /> (g) Promotes an illegal or unauthorized copy of another person's copyrighted work, such as providing pirated computer programs or links to them, providing information to circumvent manufacture-installed copy-protect devices;<br /> (h) Contains restricted or password-only access pages, or hidden pages or images (those not linked to or from another accessible page);<br /> (i) Provides material that exploits people in an otherwise inappropriate manner<br /> (j) Solicits personal information from anyone that <b class="prihead"> YOU </b> are not authorized to collect;<br /> (k) Provides instructional information about illegal activities such as making or buying illegal weapons, violating someone's privacy, or providing or creating computer viruses;<br /> (l) Contains video, photographs, or images of another person (with a minor or an adult) that are outside of the authority provided to <b class="prihead">YOU</b><br /> (m) Tries to gain unauthorized access or exceeds the scope of authorized access to the products, applications or services.<br /> (n) Engages in commercial activities and/or sales without our prior written consent such as contests, sweepstakes, barter, advertising and pyramid schemes, or the buying or selling of "virtual" items related to the products, applications or services. A “prior written consent” is a communication from authorized personnel of <b class="prihead"> <?php echo $appdetails['app_name']; ?></b> in response to <b class="prihead"> YOUR </b>request, and specifically addressing the activity or conduct for which <b class="prihead"> YOU </b>seek authorization;<br /> (o) Interferes with another user's usage or ability to transact for the products, applications or services;<br /> (p) Refers to any website or URL that, in our sole discretion, contains material that is inappropriate for the products, applications or services offered by <b class="prihead"> <?php echo $appdetails['app_name']; ?> </b>or any other website, contains content that would be prohibited or violates the letter or spirit of these Terms of Use.<br /> (q) Harm minors in any way;<br /> (r) Infringes any patent, trademark, copyright or other proprietary rights of <b class="prihead"> <?php echo $appdetails['app_name']; ?></b> or third party’s trade secrets or rights of publicity or privacy or shall not be fraudulent or involve the sale of counterfeit or stolen items;<br /> (s) Deceives or misleads <b class="prihead"> <?php echo $appdetails['app_name']; ?></b> through counterfeit addresses / users / information;<br /> (t) Impersonate another person;<br /> (u) contains software viruses or any other computer code, files or programs designed to interrupt, destroy or limit the functionality of any computer resource; or contains any Trojan horses, worms, time bombs, cancel bots, Easter eggs or other computer programming routines that may damage, detrimentally interfere with, diminish value of, surreptitiously intercept or expropriate any system, data or personal information;<br /> (v) Threatens the unity, integrity, defense, security or sovereignty of India, friendly relations with foreign states, or public order or causes incitement to the commission of any cognizable offence or prevents investigation of any offence or is insulting any other nation.<br /> (w) Shall not, directly or indirectly, offer, attempt to offer, trade or attempt to trade in any item, the dealing of which is prohibited or restricted in any manner under the provisions of any applicable law, rule, regulation or guideline for the time being in force.<br /> (x) Shall not create liability for us or cause us to lose (in whole or in part) the services of any of our partners, vendor, and supplier;<br /> (xi) Violates Intellectual Property Right of <b class="prihead"><?php echo $appdetails['app_name']; ?></b> over the products, applications and services offered by <b class="prihead"><?php echo $appdetails['app_name']; ?></b><br /> 3. <b class="prihead"> YOU</b> shall not misuse the licenses purchased by <b class="prihead"> YOU</b> for the products, applications and services offered by <b class="prihead"> <?php echo $appdetails['app_name']; ?></b> or misuse the products, applications and services in any manner including but not limited to:<br /> a) copy, modify, host, stream, sublicense, or resell the products, applications and services and any of their content whatsoever;<br /> b) use the products, applications and services beyond the number of licenses for such products, applications and services purchased by <b class="prihead"> YOU</b><br /> c) enable or allow others to use the products, applications and services using <b class="prihead">YOUR </b> account information;<br /> d) use the content or products, applications and services to construct any kind of database;<br /> e) access or attempt to access the products, applications and services by any means other than the interface we provided or authorized;<br /> f) circumvent any access or use restrictions put into place to prevent certain uses of the products, applications and services;<br /> g) share content or engage in behavior that violates anyone’s Intellectual Property Right;<br /> h) upload or share any content that is unlawful, harmful, threatening, abusive, tortious, defamatory, libelous, vulgar, lewd, profane, invasive of another’s privacy, or hateful;<br /> i) impersonate any person or entity, or falsely state or otherwise misrepresent <b class="prihead"> YOUr</b> affiliation with a person or entity;<br /> j) attempt to disable, impair, or destroy the products, applications and services;<br /> k) disrupt, interfere with, or inhibit any other user from using the products, applications and services (such as stalking, intimidating, or harassing others, inciting others to commit violence, or harming minors in any way),<br /> l) engage in chain letters, junk mails, pyramid schemes, spamming, or other unsolicited messages;<br /> m) place advertisement of any products, applications and services;<br /> n) use any data mining or similar data gathering and extraction methods in connection with the products, applications and services; or<br /> o) violate applicable law.<br /> 4.<b class="prihead"> YOU</b> shall not use any “deep-link”, “page-scrape”, “robot”, “spider” or other automatic device, program, algorithm or methodology, or any similar or equivalent manual process, to access, acquire, copy or monitor any portion of the products, applications and services or any Content, or in any way reproduce or circumvent the navigational structure or presentation of the products, applications and services or any Content, to obtain or attempt to obtain any materials, documents or information through any means not purposely made available by <b class="prihead"><?php echo $appdetails['app_name']; ?></b>. We reserve our right to bar any such activity.<br /> 4.<b class="prihead"> YOU </b> shall not attempt to gain unauthorized access to any portion or feature of the Products, applications and services, or any other systems or networks used by the products, applications and services or to any server, computer, network, or to any of the products, applications and services provided by <?php echo $appdetails['app_name']; ?>, by hacking, password “mining” or any other illegitimate means.<br /> 5.<b class="prihead"> YOU </b> shall not probe, scan or test the vulnerability of the Products, applications and services or any network used by the Products, applications and services nor breach the security or authentication measures on the Products, applications and services or any network used by the Products, applications and services.<br /> 6.<b class="prihead">YOU</b> shall not make any negative, denigrating or defamatory statement(s) or comment(s) about <?php echo $appdetails['app_name']; ?> or the brand name or domain name used by us or otherwise engage in any conduct or action that might tarnish the image or reputation, of <?php echo $appdetails['app_name']; ?>, or its partners, vendors, suppliers. YOU agree that YOU will not take any action that imposes an unreasonable or disproportionately large load on the infrastructure used by the Products, applications and services.<br /> 7.<b class="prihead"> YOU</b> agree not to use any device, software or routine to interfere or attempt to interfere with the proper working of the Products, applications and services or any transaction being conducted on the Products, applications and services, or with any other person’s use of the Products, applications and services.<br /> 8.<b class="prihead"> YOU</b> may not forge headers or otherwise manipulate identifiers in order to disguise the origin of any message or transmittal YOU send to us. YOU may not pretend that YOU are, or that YOU represent, someone else, or impersonate any other enterprise, organization, individual or entity.<br /> 8.<b class="prihead"> YOU </b> agree to grant <b class="prihead"> <?php echo $appdetails['app_name']; ?></b> a non-exclusive, worldwide, perpetual, irrevocable, royalty-free, sub-licensable (through multiple tiers) right to exercise the copyright, publicity, database rights or any other rights YOU have in <b class="prihead"> YOUR</b>Information, in any media now known or not currently known, with respect to YOUR Information. We will only use YOUR information in accordance with the terms of use and Privacy Policy as mentioned at <?php echo $appdetails['domain']; ?>.<br /> 9.<b class="prihead">YOU</b> shall not engage in advertising to, or solicitation of, other users of the <b class="prihead"><?php echo $appdetails['app_name']; ?></b> Products, applications and services to buy or sell any products or services, including, but not limited to, products or services related to <?php echo $appdetails['app_name']; ?>. In order to protect our users from such advertising or solicitation, we reserve the right to restrict the number of messages or emails which a user may send to other users in any 24-hour period which we deem appropriate in its sole discretion.<br /> 10. <b class="prihead">YOU</b> understand that we have the right at all times to disclose any information (including the identity of the persons providing information or materials on the Products, applications and services or directly to us through emails/calls/personal interactions) as necessary to satisfy any law, regulation or valid governmental request. This may include, without limitation, disclosure of the information in connection with investigation of alleged illegal activity or solicitation of illegal activity or in response to a lawful court order or subpoena. In addition, we can (and YOU hereby expressly authorize us to) disclose any information about YOU to law enforcement or other government officials, as we, in our sole discretion, believe necessary or appropriate in connection with the investigation and/or resolution of possible crimes, especially those that may involve personal injury. We reserve the right, but have no obligation, to monitor the information received through our products, applications or services. <?php echo $appdetails['app_name']; ?> shall have the right to remove or edit any content at its sole discretion. Notwithstanding this right, YOU REMAIN SOLELY RESPONSIBLE FOR THE CONTENT OF THE YOUR MESSAGES OR ANY OTHER INFORMATION THAT YOU SEND TO US THROUGH THE WEBSITE OR ANY INFORMATION/DATA THAT YOU ENTER/UPLOAD WHILE USING OUR PRODUCTS, APPLICATIONS OR SERVICES OR ANY INFORMATION/DATA YOU SHARE THROUGH EMAILS / CALLS / PERSONAL INTERACTIONS WITH <?php echo $appdetails['app_name']; ?>. Please be advised that such messages/information received from YOU does not necessarily reflect our views. In no event shall we assume or have any responsibility or liability for any information or view point or message received from YOU or for any claims, damages or losses resulting from use of such information or view point or message.<br /> 11. <b class="prihead">YOUR </b> correspondence or business dealings with, or participation in promotions of, advertisers found on or through the Products, applications and services, including payment and delivery of related goods or services, and any other terms, conditions, warranties or representations associated with such dealings, are solely between <b class="prihead">YOU</b> and such advertiser. We shall not be responsible or liable for any loss or damage of any sort incurred as the result of any such dealings or as the result of the presence of such advertisers on the Products, applications and services now or in future.<br /> 12. It is possible that other users (including unauthorized users or “hackers”) may post or transmit offensive or obscene materials on the Products, applications and services and that <b class="prihead">YOU</b> may be involuntarily exposed to such offensive and obscene materials. It also is possible for others to obtain personal information about YOU due to <b class="prihead">YOUR</b> use of the Products, applications and services, and that the recipient may use such information to harass or injure YOU. We do not approve of any such unauthorized use of <b class="prihead">YOUR</b> information, but by using the Products, applications and services <b class="prihead">YOU </b> acknowledge and agree that we are not responsible for the use of any personal information that YOU publicly disclose or share with others using our Products, applications and services. Please carefully select the type of information that <b class="prihead">YOU</b> publicly disclose or share with others using our Products, applications and services.<br /> 14. <b class="prihead"><?php echo $appdetails['app_name']; ?></b> shall have all the rights to take necessary action and claim damages that may occur due to <b class="prihead">YOUR </b>involvement/participation in any way on <b class="prihead">YOUR</b> own or through group/s of People, intentionally or unintentionally in Denial of Services / Distributed Denial of Services.<br /> </p> <p class="pricontent"> <b class="prihead">Conduct of other business</b> </p> <p class="pricontent"> <b class="prihead"><?php echo $appdetails['app_name']; ?></b> does not take responsibility or liability for the actions, products, content and services on the Website or on our products, applications or services, which are linked to Partners / Suppliers / Vendors / Advertisers / Affiliates and / or third parties. We assume no responsibility for examining or evaluating the products and services offered by any one of them. </p> <p class="pricontent"> <b class="prihead">Privacy</b> </p> <p class="pricontent"> <b class="prihead">YOUR</b> privacy is important to us. We value YOUR Personal Information. Appropriate measures are taken to keep YOUR information secure in accordance with the IT Act. </p> <p class="pricontent"> <b class="prihead">Disclaimer of Warranties and Liability</b> We do not warrant that: 1. <?php echo $appdetails['app_name']; ?> will be constantly available, or available at all; or<br /> 2. The information on <?php echo $appdetails['app_name']; ?> is complete, true, accurate or non-misleading<br /> 3. Information sent by <?php echo $appdetails['app_name']; ?> is free of viruses or other harmful components<br /> </p> <p class="pricontent"> <?php echo $appdetails['app_name']; ?> is not liable to YOU in any way or in relation to the Contents of, or use of, or otherwise in connection with, the Products, applications and services. </p> <p class="pricontent"> Nothing on Website or on/through products, applications or services constitutes, or is meant to constitute, advice of any kind. </p> <p class="pricontent"> <b class="prihead">Accuracy of Information</b> Providing accurate information at the time of placing the order is critical. Since all order, shipping and other information will be communicated over phone and email, it is imperative to provide correct information for ongoing communication. Also by providing YOUR phone number and email address YOU agree to be contacted by us via phone calls and / or SMS notifications / or email, in case of any order or shipment or other related updates. </p> <p class="pricontent"> All the Products, applications and services sold are governed by different state laws and if we are unable to deliver such Products, applications or services due to implications of different state laws, we will return or will give credit for the amount (if any) received in advance by us from the sale of such Product, applications and services that could not be delivered to YOU. No interest shall be provided on the advance received. </p> <p class="pricontent"> <b class="prihead">Information on Products</b> We try to be as accurate as possible while displaying the information related to our products, applications or services. However, we do not warrant that description or other content related to our products, applications or services is accurate, complete, reliable, current, or error-free. </p> <p class="pricontent"> <b class="prihead">Compliance with Licenses</b> We may, no more than once every 12 months, upon seven 7 days'prior notice to YOU, appoint our personnel or an independent third party auditor who is obliged to maintain confidentiality to inspect (including manual inspection, electronic methods, or both) YOUR records, systems, and facilities to verify that YOUR installation and use of any and all products, applications and services offered by <?php echo $appdetails['app_name']; ?> is in conformity with its valid licenses from us. Additionally, YOU will provide us with all records and information requested by us in order to verify that its installation and use of any and all products, applications and services is in conformity with YOUR valid licenses from us within 30 days of our request. If the verification discloses a shortfall in licenses for the products, applications and services, YOU will immediately acquire any necessary licenses, subscriptions, and any applicable back maintenance and support. If the underpaid fees exceed 5% of the value of the payable license fees, then YOU will also pay for our reasonable cost of conducting the verification. </p> <p class="pricontent"> <b class="prihead">Payment</b> While availing any of the payment method/s available as part of our products, applications or services, we will not be responsible or assume any liability, whatsoever in respect of any loss or damage arising directly or indirectly to YOU due to:<br /> 1. Lack of authorization by the bank; or <br /> 2. Decline of transaction by the bank for any reason whatsoever; or<br /> 3. Any action not in accordance with the directions given for the payment method All payments made for purchases/services made available through our Products, applications and services by YOU shall be compulsorily in Indian Rupees.<br /> At any point of time before delivering a product, application or service, we may request YOU to provide supporting documents that establishes the ownership of the payment instrument used by YOU for YOUR purchase. This is done in the interest of providing a safe online environment to our users, customers and prospects. </p> <p class="pricontent"> <b class="prihead">Service Cancellation</b> We reserve the right to cancel delivery of any product, application or service at our sole discretion; under a situation where we are not able to meet the requirement of the product, application or service sought by YOU or for any other reason. However, we will ensure that any communication of cancellation of a product, application or service sought by YOU, so cancelled, is intimated within appropriate time to the concerned person and any applicable refund will be made in reasonable time. </p> <p class="pricontent"> <b class="prihead">Refund Policy</b> Refund will be applicable under the following scenarios<br /> I. YOU have been charged but the products, applications or services are not delivered <br /> II. <?php echo $appdetails['app_name']; ?> has received the payment (advance money, part money or full payment as per the schedule of payment accepted and signed for that order between YOU and <?php echo $appdetails['app_name']; ?>) and the order is subsequently cancelled by <?php echo $appdetails['app_name']; ?> due to <?php echo $appdetails['app_name']; ?>’s inability to deliver the products, applications or services or prohibition by any central/state law or for any other reason whatsoever. Refund will be credited back to the same account of YOURS which was used for placing the order. Charges incurred on account of such refunds or reversal will be borne by <?php echo $appdetails['app_name']; ?>. The refund will be processed for each of the above cases as under<br /> I. Within 30 days of the failed transaction<br /> II. Within 30 days of order cancellation by <?php echo $appdetails['app_name']; ?> </p> <p class="pricontent"> <b class="prihead">Breach</b> In case of a breach of any of the Terms and Conditions, YOU may be disabled, blocked or deleted and access will be denied to the Products, applications and services <br /> We may at any time at our sole discretion reinstate suspended users. A user that has been suspended or blocked may not use the Products, applications and services in any manner whatsoever until such time that such user is reinstated by us. <br /> Notwithstanding the foregoing, if YOU breach the Terms of Use or Privacy Policy or other ruler and policies, we reserve the right to recover any amounts due and owing by YOU to us and to take strict legal action including but not limited to a referral to the appropriate police or other authorities for initiating criminal or other proceedings against YOU. </p> <p class="pricontent"> <b class="prihead">Indemnity</b> YOU shall indemnify and hold harmless <?php echo $appdetails['app_name']; ?>, its owner, licensee, affiliates, partners, suppliers, vendors, subsidiaries, group companies (as applicable) and their respective officers, directors, agents, and employees, from any claim or demand, or actions including reasonable attorneys' fees, made by any third party or penalty imposed due to or arising out of YOUR breach of this Terms of Use, Privacy Policy and other Policies, or YOUR violation of any law, rules or regulations or the rights of a third party. </p> <p class="pricontent"> <b class="prihead">Applicable Law</b> This Agreement shall be governed by and interpreted and construed in accordance with the laws of India. The place of jurisdiction shall be exclusively in Delhi. </p> <p class="pricontent"> <b class="prihead">Limitation of Liability</b> IN NO EVENT SHALL <?php echo $appdetails['app_name']; ?> BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND IN CONNECTION WITH THIS AGREEMENT, EVEN IF <?php echo $appdetails['app_name']; ?> HAS BEEN INFORMED IN ADVANCE OF THE POSSIBILITY OF SUCH DAMAGES. </p> <p class="pricontent"> <b class="prihead">Feedback / Complaint / Grievance</b> In case YOU have feedback or complaints or grievance related to any of our products, applications and services, YOU may contact us at <a href="#" <?php echo $appdetails['support_mail']; ?>> </a> </p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline-secondary" data-bs-dismiss="modal">Close</button> </div> </div> </div> </div> <!--terms and conditions--> <!--modal--> <div id="pwdModal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <!-- <button type="button" class="close" data-dismiss="modal" aria-hidden="true" style="margin:20px; "> ✕ </button> --> <form method="post"> <div class="modal-body "> <div class="col-md-12 "> <div class="panel panel-default"> <div class="panel-body"> <div class="text-center"> <!-- <p></p> --> <div class="panel-body"> <fieldset> <div class="form-group"> <!-- <input class="form-control input-lg" placeholder="E-mail Address" id="forgot_email" name="forgot_email" type="email"> --> <input placeholder="10 Digit Mobile Number" id="forgot_email" name="forgot_email" maxlength="10" class="form-control" required> </div> <input class="btn btn-primary" value="Send My Password" type="submit" style="background-color:#01aee6;margin-top: 1rem; width: 100%;" onclick="return check_email()"> </fieldset> </div> </div> </div> </div> </div> </div> </form> <div class="modal-footer"> <div class="col-md-12"> </div> </div> </div> </div> </div> <!-- <div id="pwdModal" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <form method="post"> <div class="modal-body"> <div class="col-md-12"> <div class="panel panel-default"> <div class="panel-body"> <div class="text-center"> <p></p> <div class="panel-body"> <fieldset> <div class="form-group"> <input class="form-control input-lg" placeholder="10 Digit Mobile Number" id="forgot_email" name="forgot_email" maxlength="10"> </div> <input class="btn btn-lg btn-primary btn-block" value="Send My Password" type="submit" style="background-color:#17b88c;" onclick="return check_email()"> </fieldset> </div> </div> </div> </div> </div> </div> </form> <div class="modal-footer"> <div class="col-md-12"> </div> </div> </div> </div> </div> --> </div> <?php //print_r($_SESSION); if ($_SESSION['child']['log_school_id'] != "" && $_SESSION['child']['auth_id'] != "") { echo '<script> $(document).ready(function(){ if(confirm("You are already logged in1. Do you want to log out from the existing login?")) //window.location.href="logout.php"; else //window.location.href="academicyear_management.php"; }); </script>'; } ?> </body> </html>