+
Recover Soon!!
+
Best Wishes From the Experts!
+
+
Thank You for Your valuable support!
+
+ A good health means that a person is physically and mentally strong and fitness refers to the ability of the person to encounter the demands of the environment. The person possessing good health and fitness can enjoy his/her life completely.
+
Tips to Maintain Health and Fitness:
+
+
+The following are the ways that can help in maintaining health and fitness:
+
+
+- Doing the daily exercise for at least 30 minutes.
+
+
- Eating balanced and healthy food in limited quantity and at the right time.
+
+
- Adequate sleeping and waking up early in the morning.
+
+Benefits of Health and Fitness:
+
+Below are the benefits of health and fitness for a person:
+
+
- Reduces the risk of diseases like diabetes, obesity, etc.
+
+- Helps in healing the injuries quickly.
+
+- Increases the lifespan of the person.
+
+- Decreases stress and anxiety.
+
+
+
+With daily exercise and proper diet, a person can achieve good health and fitness. It not only makes the person happy but also makes him/her free of stress and worries.
+
+
Your Credits:20 % Discount on Treatment for any minute health issue
+
+
Coupon ID:758437
+
+
+
diff --git a/Anonymous/bg.jpg b/Anonymous/bg.jpg
new file mode 100644
index 00000000..cb3a5123
Binary files /dev/null and b/Anonymous/bg.jpg differ
diff --git a/Anonymous/bg.png b/Anonymous/bg.png
new file mode 100644
index 00000000..097bc803
Binary files /dev/null and b/Anonymous/bg.png differ
diff --git a/Anonymous/bgsign.jpg b/Anonymous/bgsign.jpg
new file mode 100644
index 00000000..6bbb3e6e
Binary files /dev/null and b/Anonymous/bgsign.jpg differ
diff --git a/Anonymous/check.js b/Anonymous/check.js
new file mode 100644
index 00000000..e2538aa4
--- /dev/null
+++ b/Anonymous/check.js
@@ -0,0 +1,55 @@
+function validate()
+{
+var user=document.getElementById("h");
+var pass=document.getElementById("u");
+if(h.value=="-None-")
+{
+ if(u.value=="Fit")
+ window.open("Fit.html");
+ else
+ window.open("search.html");
+
+}
+else if (h.value=="Majra Chaukdi")
+{
+ window.open("majra.html");
+}
+
+else if(h.value=="My Location")
+{
+ window.open("sabar.html");
+
+}
+else if(h.value=="Chiloda Circle")
+{
+ window.open("chiloda.html");
+
+}
+
+else if(h.value=="Himmatnagar")
+{
+ window.open("himmatnagar.html");
+
+}
+else if(h.value=="Pathika Ashram")
+{
+ window.open("pathika.html");
+
+}
+else if(h.value=="Vastrapur")
+{
+ window.open("vast.html");
+
+}
+else if(h.value=="Tajpur")
+{
+ window.open("tajpur.html");
+
+}
+else if(h.value=="Prantij")
+{
+ window.open("prantij.html");
+
+}
+
+}
diff --git a/Anonymous/chiloda.html b/Anonymous/chiloda.html
new file mode 100644
index 00000000..02351e8f
--- /dev/null
+++ b/Anonymous/chiloda.html
@@ -0,0 +1,37 @@
+
+
+
+ Chiloda | Statistics
+
+
+
+
+
+
+
+
Chiloda
+
Current Temprature : 26 °
+

+
+
+
+
+ | Disease |
+ Chances(out of 100) |
+
+
+ | Dengue |
+ 16% |
+
+
+ | Malaria |
+ 7% |
+
+
+ | Other |
+ 10% |
+
+
+
+
\ No newline at end of file
diff --git a/Anonymous/connect.php b/Anonymous/connect.php
new file mode 100644
index 00000000..a087a769
--- /dev/null
+++ b/Anonymous/connect.php
@@ -0,0 +1,26 @@
+connect_error){
+ die('Connection Filed :' .$conn->connect_error);
+}
+else{
+ $stmt = $conn->prepare("insert into information_1(name, age, grp1, email, psw, psw_repeat, Contact, aadhar)
+ values(?, ?, ?, ?, ?, ?, ?, ?)");
+ $stmt->bind_param('sissssii', $name, $age, $grp1, $email, $psw, $psw_repeat, $Contact, $aadhar);
+ $stmt->execute();
+ echo "Information updated..";
+ $stmt->close();
+ $conn->close();
+}
+?>
\ No newline at end of file
diff --git a/Anonymous/himmatnagar.html b/Anonymous/himmatnagar.html
new file mode 100644
index 00000000..3d2c201a
--- /dev/null
+++ b/Anonymous/himmatnagar.html
@@ -0,0 +1,35 @@
+
+
+
+ Himmatnagar | Stastistics
+
+
+
+
+
+
+
+
Himmatnagar
+
Current Temprature : 32 °
+

+
+
+
+ | Disease |
+ Chances |
+
+
+ | Dengue |
+ 6% |
+
+
+ | Malaria |
+ 12% |
+
+
+ | Other |
+ 10% |
+
+
+
+
\ No newline at end of file
diff --git a/Anonymous/jQuery.js b/Anonymous/jQuery.js
new file mode 100644
index 00000000..773ad95c
--- /dev/null
+++ b/Anonymous/jQuery.js
@@ -0,0 +1,10598 @@
+/*!
+ * jQuery JavaScript Library v3.4.1
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright JS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2019-05-01T21:04Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var document = window.document;
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var concat = arr.concat;
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML