JezK
Edit File: schoolsignup.php
<?php session_start(); if($_SESSION['child']['school_ok']=='') echo "<script>location.replace('index.php');</script>"; include('adm_operations.php'); $operations=new adm_operations(); $appdetails=$operations->gettingAppDetails(); if(isset($_POST['signup'])) { $result=$operations->schoolSignUp($_SESSION['child']['school_ok'],$_POST['email'],$_POST['password'],$_POST['contactname'],$_POST['contactnumber'],$_POST['phone']); if($result=='phone_exist') echo "<script>alert('".$_POST[phone]." is already registered with us, Please contact Admin');</script>"; else echo "<script>location.replace('index.php');</script>"; } $result=$operations->regiterwithlicence($_SESSION['child']['school_ok']); ?> <!DOCTYPE html> <html> <head> <title><?php echo $appdetails['app_name'];?>-School Admin</title> <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> <style> *{ margin:0; padding:0; } body{ background-color: #17b88c; font-family:Arial, Helvetica, sans-serif; line-height: 1.3!important; } a{ display:block; color:#ad5482; text-decoration:none; font-weight:bold; text-align:center; } #bg{ position:relative; top:20px; height:780px; width:800px; background-color:#17b88c; background-size:cover; margin-left:auto; margin-right:auto; } .module{ position:relative; top:17%; height:75%; width:450px; margin-left:auto; margin-right:auto; border-radius:15px; background:#FFFFFF; margin-top:-60px; -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .45); box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .45); } .module ul{ list-style-type:none; margin:0; } .tab{ float:left; height:60px; width:25%; padding-top:20px; box-sizing:border-box; background:#eeeeee; text-align:center; cursor:pointer; } .form{ float:left; height:86%; width:100%; box-sizing:border-box; padding:40px; margin-top:-30px; } .textbox{ height:38px; width:100%; border-radius:1px; border:rgba(0,0,0,.3) 1px solid; box-sizing:border-box; padding:7px; margin-bottom:30px; margin-top:-5px; font-family:Arial, Helvetica, sans-serif; font-style:normal; font-size:13px; } .textbox:focus{ outline:none; border:rgba(24,149,215,1) 1px solid; color:#666666; } #button { height:38px; width:100%;background:#17b88c; color:#FFFFFF; } #button:hover { background:#14775c; } .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; font-weight: lighter!important; } </style> <script> function validateform() { var password=document.getElementById('password').value; var cpassword=document.getElementById('cpassword').value; var contact_name=document.getElementById('contactname').value; var contact_number=document.getElementById('contactnumber').value; var regex2=/^[0-9]*$/; var regex1=/^[a-zA-Z0-9 ]*$/; //var r=/^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[\@\#\$\%\^\&\*\!]).{7,}$/; if(password=='') { alert('Please enter Password'); document.getElementById('password').focus(); return false; } else if(password.length<6) { alert('Password should be minimum of 6 characters'); document.getElementById('password').focus(); return false; } //else if(!r.test(password)) //{ //alert('Password does not meet the password criteria, Please try another Password'); //document.getElementById('password').focus(); //return false; //} else if(cpassword=='') { alert('Please enter Confirm Password'); document.getElementById('cpassword').focus(); return false; } else if(cpassword!=password) { alert('Password and Confirm Password do not match'); return false; } else if(contact_name=='') { alert('Please enter Contact Person Name'); document.getElementById('contactname').focus(); return false; } else if(!regex1.test(contact_name)) { alert('Please enter a vaild Contact Person Name'); document.getElementById('contactname').focus(); return false; } else if(contact_name.length<5 || contact_name.length>50) { alert('Please enter a vaild Contact Person Name'); document.getElementById('contactname').focus(); return false; } else if(contact_number=='') { alert('Please enter Contact Person Mobile Number'); document.getElementById('contactnumber').focus(); return false; } else if(!regex2.test(contact_number)) { alert('Please enter Contact Person Mobile Number'); document.getElementById('contactnumber').focus(); return false; } else if(contact_number.length!=10) { alert('Please enter a valid Mobile Number'); document.getElementById('contactnumber').focus(); return false; } } </script> </head> <body> <div id="bg"> <div class="module"> <div class="log" align="center"> <img class="img" src="<?php echo $appdetails['app_logo'];?>" height="60" width="" style=" margin-top:20px;"> <p align="left" style="font-family:Arial, Helvetica, sans-serif;font-style:normal;font-size:18px;margin-top:15px;color:#000000; margin-bottom:10px; margin-left:40px;"> <b style="color:#17b88c;">Welcome</b> <? echo $_GET['school_name'];?></p> <form class="form" method="post"> <input type="text" id="phone" name="phone" class="textbox" value="<? echo $result['school_phone'];?>" readonly="true" /> <input type="password" placeholder="Password" id="password" class="textbox" name="password"/> <p style="font-family:Arial, Helvetica, sans-serif;font-style:italic;font-size:10px;margin-top:-25px;text-align:left;">(minimum length is 6 characters)</p> <input type="password" placeholder="Confirm Password" id="cpassword" class="textbox" name="cpassword"/> <input type="text" placeholder="Contact Person Name " id="contactname" name="contactname" class="textbox" maxlength='50' value="<? echo $result['contact_name'];?>"/> <input type="hidden" name="email" class="textbox" value="<? echo $result['school_email'];?>"/> <input type="text" placeholder="Contact Person Mobile Number" id="contactnumber" name="contactnumber" class="textbox" maxlength="10" value="<? echo $result['contact_number'];?>"/> <input type="submit" value="Sign Up" id="button" name="signup"class="btn btn-default" onclick="return validateform()" /> </form> <span style="text-align:center;font-family:Arial, Helvetica, sans-serif;font-style:italic;font-size:13px;cursor:pointer;color:#335ddc;" data-target="#terms" data-toggle="modal" >Terms & Conditions</span> </div> </div> </div> <!--terms and conditions--> <!-- Modal --> <div class="modal fade" id="terms" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content" style="height:600px;overflow: scroll;"> <div class="modal-body"> <p class="prihead">Terms & Conditions</p> <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 <span class="prihigh">YOU</span> or any of <span class="prihigh">YOUR </span> customers, associates, employees, colleagues, partners or any individual/third party authorized by <span class="prihigh">YOU</span> (collectively referred as <span class="prihigh">"YOU"</span>), use any of the products, applications or services, <span class="prihigh">YOU</span> 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 <span class="prihigh">YOU</span> and they shall be deemed to be incorporated into this Terms of Use. <span class="prihigh"><?php echo $appdetails['app_name'];?></span> reserves the right, at its sole discretion, to change, modify, add or remove portions of these Terms of Use, at any time. It is <span class="prihigh">YOUR </span> responsibility to check these Terms of Use periodically for changes. <span class="prihigh">YOUR</span> 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 <span class="prihigh">YOU </span> accept and agree to the changes. </p> <p class="pricontent"> <span 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</span> </p> <p class="pricontent"> These Terms and Conditions will be applicable to <span class="prihigh">YOU </span>when <span class="prihigh">YOU </span> either procure the products, applications and services from <span class="prihigh"><?php echo $appdetails['app_name'];?> </span> or intend to procure the products, applications and services offered by <span class="prihigh"><?php echo $appdetails['app_name'];?> </span> or browse through or use the publicly available resources of <span class="prihigh"><?php echo $appdetails['app_name'];?></span> or related to<span class="prihigh"><?php echo $appdetails['app_name'];?>.</span> </p> <span class="prihead">Confidentiality of YOUR Personal Records </span> <p class="pricontent"> When <span class="prihigh">YOU </span>purchase <span class="prihigh"><?php echo $appdetails['app_name'];?></span>, <span class="prihigh">YOU </span> will need to create a User ID and Password on <span class="prihigh"><?php echo $appdetails['app_name'];?></span> portal in order to use the products, applications and services offered by <span class="prihigh"><?php echo $appdetails['app_name'];?></span>. <span class="prihigh">YOU</span> shall therefore be responsible for all activities that <span class="prihigh">YOU </span> undertake under that User ID and Password. <span class="prihigh">YOU</span> will not disclose or share <span class="prihigh">YOUR</span> User Id and Password to anyone else. <span class="prihigh">YOU </span> shall be responsible for frequently changing <span class="prihigh">YOUR</span> password for the products, applications and services used by <span class="prihigh">YOU</span>. </p> <p class="pricontent"> <span class="prihead">Right to Block / Disable / Terminate Access Temporarily or Permanently</span> </p> <p class="pricontent"> If <span class="prihigh">YOU </span>provide information that is untrue, inaccurate, not current or incomplete or <span class="prihigh"><?php echo $appdetails['app_name'];?></span> has reasonable grounds to suspect that the information provided by <span class="prihigh">YOU</span> is untrue, inaccurate, not current or incomplete, or not in accordance with the Terms of Use, then <span class="prihigh"><?php echo $appdetails['app_name'];?></span> shall have the right to temporarily or permanently disable or terminate or block <span class="prihigh">YOUR </span> access to <span class="prihigh"><?php echo $appdetails['app_name'];?></span> products, applications and services and revoke all licenses purchased by <span class="prihigh">YOU </span> for the said products, applications and services. </p> <p class="pricontent"> <span class="prihead">Communications</span> </p> <p class="pricontent"> When<span class="prihead">YOU </span> use our products, applications and services or send emails or other data, information or communication to us, <span class="prihead">YOU </span> agree and understand that <span class="prihead">YOU</span> are communicating with us through electronic records and <span class="prihead">YOU </span> consent to receive communications via electronic records from us periodically and as and when required. </p> <p class="pricontent"> <span class="prihead">Charges</span> There are no charges or fee for browsing products on <span class="prihead"><?php echo $appdetails['app_name'];?></span> website. However, <span class="prihead">YOU</span> can choose to purchase requisite number of licenses for the products, applications and services offered by <span class="prihead"><?php echo $appdetails['app_name'];?></span> by paying a one time or recurring fee including maintenance and renewal fee, as the case may be, as mutually agreed between <span class="prihead">YOU</span> and <span class="prihead"><?php echo $appdetails['app_name'];?></span> in accordance with the schedule of payments agreed between YOU and <span class="prihead"><?php echo $appdetails['app_name'];?></span>. </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 <span class="prihead"><?php echo $appdetails['app_name'];?></span>, then <span class="prihead"><?php echo $appdetails['app_name'];?> </span>reserves the right to charge separately for the same with prior intimation to <span class="prihead">YOU</span>. 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 <span class="prihead">YOU</span> via electronic/physical means or during sales discussions between <span class="prihead">YOU </span>and <span class="prihead"><?php echo $appdetails['app_name'];?></span>. </p> <p class="pricontent"> Every product, application or service offered by <span class="prihead"><?php echo $appdetails['app_name'];?></span> can be purchased for a fee. Such prices may not remain fixed and can be changed at the sole discretion of <span class="prihead"><?php echo $appdetails['app_name'];?></span>. </p> <p class="pricontent"> <span class="prihead"> Use of the <?php echo $appdetails['app_name'];?> products, applications and services</span> Use of <span class="prihead"><?php echo $appdetails['app_name'];?></span> products, applications and services shall be strictly governed by the following binding principles: <br/> 1.<span class="prihead"> YOU</span> shall not modify / update any information that has not been posted / hosted by <span class="prihead"> YOU </span><br/> 2.<span class="prihead"> YOU </span> shall not host, display, upload, publish, transmit, or share any information which:<br/> (a) Belongs to another person unless<span class="prihead"> YOU </span>are authorized by the person for the same <br/> (b)<span class="prihead"> YOU</span> 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 <span class="prihead"> YOU </span> 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 <span class="prihead">YOU</span><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 <span class="prihead"> <?php echo $appdetails['app_name'];?></span> in response to <span class="prihead"> YOUR </span>request,and specifically addressing the activity or conduct for which <span class="prihead"> YOU </span>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 <span class="prihead"> <?php echo $appdetails['app_name'];?> </span>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 <span class="prihead"> <?php echo $appdetails['app_name'];?></span>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 <span class="prihead"> <?php echo $appdetails['app_name'];?></span> 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 <span class="prihead"><?php echo $appdetails['app_name'];?></span> over the products, applications and services offered by <span class="prihead"><?php echo $appdetails['app_name'];?></span><br/> 3. <span class="prihead"> YOU</span> shall not misuse the licenses purchased by <span class="prihead"> YOU</span> for the products, applications and services offered by <span class="prihead"> <?php echo $appdetails['app_name'];?></span> 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 <span class="prihead"> YOU</span><br/> c) enable or allow others to use the products, applications and services using <span class="prihead">YOUR </span> 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 <span class="prihead"> YOUr</span> 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.<span class="prihead"> YOU</span> 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 <span class="prihead"><?php echo $appdetails['app_name'];?></span>. We reserve our right to bar any such activity.<br/> 5.<span class="prihead"> YOU </span> 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/> 6.<span class="prihead"> YOU </span> 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/> 7.<span class="prihead">YOU</span> 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/> 8.<span class="prihead"> YOU</span> 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/> 9.<span class="prihead"> YOU</span> 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/> 10.<span class="prihead"> YOU </span> agree to grant <span class="prihead"> <?php echo $appdetails['app_name'];?></span> 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 <span class="prihead"> YOUR</span>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/> 11.<span class="prihead">YOU</span> shall not engage in advertising to, or solicitation of, other users of the <span class="prihead"><?php echo $appdetails['app_name'];?></span> 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/> 12.<span class="prihead">YOU</span> 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/> 13. <span class="prihead">YOUR </span> 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 <span class="prihead">YOU</span> 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/> 14. 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 <span class="prihead">YOU</span> may be involuntarily exposed to such offensive and obscene materials. It also is possible for others to obtain personal information about YOU due to <span class="prihead">YOUR</span> 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 <span class="prihead">YOUR</span> information, but by using the Products, applications and services <span class="prihead">YOU </span> 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 <span class="prihead">YOU</span> publicly disclose or share with others using our Products, applications and services.<br/> 15. <span class="prihead"><?php echo $appdetails['app_name'];?></span> shall have all the rights to take necessary action and claim damages that may occur due to <span class="prihead">YOUR </span>involvement/participation in any way on <span class="prihead">YOUR</span> own or through group/s of People, intentionally or unintentionally in Denial of Services / Distributed Denial of Services.<br/> </p> <p class="pricontent"> <span class="prihead">Conduct of other business</span> </p> <p class="pricontent"> <span class="prihead"><?php echo $appdetails['app_name'];?></span> 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"> <span class="prihead">Privacy</span> </p> <p class="pricontent"> <span class="prihead">YOUR</span> 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"> <span class="prihead">Disclaimer of Warranties and Liability</span> 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"> <span class="prihead">Accuracy of Information</span> 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"> <span class="prihead">Information on Products</span> 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"> <span class="prihead">Compliance with Licenses</span> 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"> <span class="prihead">Payment</span> 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"> <span class="prihead">Service Cancellation</span> 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"> <span class="prihead">Refund Policy</span> 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"> <span class="prihead">Breach</span> 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"> <span class="prihead">Indemnity</span> 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"> <span class="prihead">Applicable Law</span> 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"> <span class="prihead">Limitation of Liability</span> 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"> <span class="prihead">Feedback / Complaint / Grievance</span> 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="#" style="display:inline;color:blue;"><?php echo $appdetails['support_mail'];?></a> </p> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div> <!--terms and conditions--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </body> </html>