This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
portal.html
652 lines (590 loc) · 34.1 KB
/
portal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<!DOCTYPE html>
<html style="font-size: 16px;">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="keywords" content="CHOOSE YOUR VOUCHER">
<meta name="description" content="">
<meta name="page_type" content="np-template-header-footer-from-plugin">
<title>FOCUS CAPTIVE PORTAL</title>
<link rel="stylesheet" href="captiveportal-tidy.css" media="screen">
<script src="captiveportal-jquery.js"></script>
<script src="captiveportal-jspdf.js"></script>
<script class="u-script" type="text/javascript" src="captiveportal-nicepage.js" defer=""></script>
<script>
$(document).ready(function(){
$("#queryForm").submit(function(event) {
event.preventDefault();
event.stopPropagation();
event.stopImmediatePropagation();
const doc = new jsPDF();
let sendRequest = true;
let voucherPin = document.getElementById("usedVoucherPin").value;
voucherPin = voucherPin.replace(/\s+/g, '');
const phoneNumber = document.getElementById("usedPhoneNumber").value;
if (isNaN(voucherPin) && sendRequest) {
alert("Please input a valid voucher pin");
sendRequest = false;
console.log("invalid voucher pin")
}
if (voucherPin === '' && sendRequest) {
alert("Please input a valid pin");
sendRequest = false;
console.log("invalid voucher pin")
}
if (isNaN(phoneNumber) && sendRequest) {
alert("Please input a valid phone number");
sendRequest = false;
console.log("invalid phone number")
}
if (phoneNumber === '' && sendRequest) {
alert("Please input a valid phone number");
sendRequest = false;
console.log("invalid phone number")
}
if (phoneNumber.length !== 10 && sendRequest) {
alert("Please input a valid phone number");
sendRequest = false;
console.log("invalid phone number")
}
if (sendRequest) {
$("#queryButton").attr("disabled", true);
$("#queryButton" ).fadeTo( "fast" , 0.1, function() {
// Animation complete.
});
const data = {
"voucherPin" : voucherPin,
"cellphoneNumber": phoneNumber
}
console.log(voucherPin)
console.log(phoneNumber)
$.ajax({
type: "POST",
url: "https://paymentapiprod.blackequations.co.za/query",
contentType: "application/json",
data: JSON.stringify(data),
success: function (data, status) {
const json_obj = data.message;
const json_obj_response_code = data.responseCode;
const message = JSON.stringify(json_obj);
const response_code = JSON.stringify(json_obj_response_code);
// const json = JSON.parse(message);
if (response_code === '0') {
doc.text(message, 10, 10);
doc.save("response.pdf");
if(alert("Your voucher code is: " + message + "\nPlease write this down as clicking ok will remove " +
"it from your screen. You will also be able to download a PDF with your code after clicking okay.")){}
else {
window.location.reload();
}
}
else {
if(alert(message)){}
else {
window.location.reload();
}
}
},
error: function (errMsg) {
console.log(errMsg)
console.log(typeof(errMsg))
if(alert("There has been an error retrieving your Voucher. Please notify an admin or try again later")){}
else {
window.location.reload();
}
window.location.reload();
}
})
}
});
});
</script>
<script>
function myFunction() {
alert("The form was submitted");
}
function Validator() {
alert("The form was submitted");
return true;
}
$(document).ready(function(){
$("#One4YouForm").submit(function(event) {
console.log('Submit Voucher done')
/* stop form from submitting normally */
event.preventDefault();
event.stopPropagation();
event.stopImmediatePropagation();
const doc = new jsPDF();
let sendRequest = true;
const voucherChoice = $("input[name='" + "radiobutton" + "']:checked").val();
if (typeof(voucherChoice) === 'undefined') {
alert("Please select a voucher");
sendRequest = false;
console.log("no voucher selected")
}
let voucherPin = document.getElementById("voucherPin").value;
voucherPin = voucherPin.replace(/\s+/g, '');
const phoneNumber = document.getElementById("phoneNumber").value;
if (isNaN(voucherPin) && sendRequest) {
alert("Please input a valid voucher pin");
sendRequest = false;
console.log("invalid voucher pin")
}
if (voucherPin === '' && sendRequest) {
alert("Please input a valid voucher pin");
sendRequest = false;
console.log("invalid voucher pin")
}
if (isNaN(phoneNumber) && sendRequest) {
alert("Please input a valid phone number");
sendRequest = false;
console.log("invalid phone number")
}
if (phoneNumber === '' && sendRequest) {
alert("Please input a valid phone number");
sendRequest = false;
console.log("invalid phone number")
}
if (phoneNumber.length !== 10 && sendRequest) {
alert("Please input a valid phone number");
sendRequest = false;
console.log("invalid phone number")
}
if (sendRequest) {
$("#voucherButton").attr("disabled", true);
$("#voucherButton" ).fadeTo( "fast" , 0.1, function() {
// Animation complete.
});
let amount = voucherChoice // don't make this 0 as 0 redeems the whole voucher
const data = {
"voucherChoice" : amount,
"voucherPin" : voucherPin,
"cellphoneNumber": phoneNumber
}
console.log(data)
$.ajax({
type: "POST",
url: "https://paymentapiprod.blackequations.co.za/redeem",
contentType: "application/json",
data: JSON.stringify(data),
success: function (data, status) {
const json_obj = data.message;
const json_obj_response_code = data.responseCode;
const message = JSON.stringify(json_obj);
const response_code = JSON.stringify(json_obj_response_code);
// const json = JSON.parse(message);
if (response_code === '0') {
doc.text(message, 10, 10);
doc.save("response.pdf");
if(alert("Your voucher code is: " + message + "\nPlease write this down as clicking ok will remove " +
"it from your screen.")){}
else {
window.location.reload();
}
}
else {
if(alert(message)){}
else {
window.location.reload();
}
}
},
error: function (errMsg) {
console.log(errMsg)
console.log(typeof(errMsg))
if(alert("There has been an error processing your payment. Please notify an admin or try again later")){}
else {
window.location.reload();
}
window.location.reload();
}
})
}
});
});
</script>
<script>
var allRadios = document.getElementsByName("radio");
var booRadio;
var x = 0;
for(x = 0; x < allRadios.length; x++){
allRadios[x].onclick = function(){
if(booRadio === this){
this.checked = false;
booRadio = null;
}else{
booRadio = this;
}
};
}
</script>
<script type="application/ld+json">{
"@context": "http://schema.org",
"@type": "Organization",
"name": "Site198722"
}</script>
<script>
/*var keycloak = new Keycloak({
"realm": "inethi",
"auth-server-url": "https://keycloak.inethi.net/auth/",
"ssl-required": "external",
"resource": "inethisplash",
"public-client": true,
"confidential-port": 0,
"clientId": "inethisplash"
});
keycloak.init( {onLoad: 'login-required'} ).then(function (authenticated) {
console.log(authenticated ? 'authenticated' : 'not authenticated');
}).catch(function () {
console.log('failed to initialize');
});*/
function copyFunction() {
document.getElementById("auth_user").value = document.getElementById("auth_voucher").value.toLowerCase();
document.getElementById("auth_pass").value = document.getElementById("auth_voucher").value.toLowerCase();
}
function convertFunction() {
document.getElementById("auth_user").value = document.getElementById("auth_user").value.toLowerCase();
}
function viewdiv(id) {
var div = document.getElementById(id);
div.style.display = "block"
}
function hidediv(id) {
var div = document.getElementById(id);
div.style.display = "none"
}
</script>
<meta name="theme-color" content="#478ac9">
<meta property="og:title" content="FOCUS CAPTIVE PORTAL">
<meta property="og:type" content="website">
</head>
<body data-home-page="FOCUS-CAPTIVE-PORTAL.html" data-home-page-title="FOCUS CAPTIVE PORTAL" class="u-body u-xl-mode">
<section class="u-clearfix u-custom-color-1 u-section-1" id="sec-71a9">
<div class="u-align-left u-clearfix u-sheet u-sheet-1">
<img class="u-align-center u-image u-image-1" src="captiveportal-FOCUS1231.png" data-image-width="1112" data-image-height="477">
</div>
</section>
<div class="login-card" , id="logincard">
<span> <i>To access the Internet enter your username and password or voucher number. </i></span>
<br />
<br />
<div class="loginform">
<div id="error-message">
#PORTAL_MESSAGE#
</div>
<form name="login_form" method="post" action="#PORTAL_ACTION#">
<input onkeyup="convertFunction()" type="text" name="auth_user" placeholder="User" id="auth_user">
<input type="password" name="auth_pass" placeholder="Password" id="auth_pass">
<br />
<input onkeyup="copyFunction()" type="text" name="auth_voucher" placeholder="Voucher" id="auth_voucher">
<div class="login-help">
<label class="label--checkbox">
<input type="checkbox" class="checkbox"
onchange="document.getElementById('login').disabled = !this.checked;">
<span>I agree with the <a href="http://10.2.0.10/iNethi_AUP.pdf">Acceptance User
Policy</a> </span>
</label>
</div>
<br/>
<input name="redirurl" type="hidden" value="https://splash.inethilocal.net">
<input type="submit" name="accept" class="login login-submit" value="Login" id="login" disabled>
<button type="button" class="login-cancel" onclick="hidediv('logincard')" id="cancel">Cancel </button>
<br/>
</form>
</div>
</div>
<button class="floatButton" type="button" onclick="viewdiv('logincard')">INTERNET</button>
<section class="u-clearfix u-section-2" id="sec-061e">
<div class="u-clearfix u-sheet u-sheet-1">
<h1 class="u-align-center u-text u-text-default u-text-1">FOCUS CONNECT</h1>
<div class="u-align-center u-clearfix u-expanded-width u-gutter-10 u-layout-custom-sm u-layout-custom-xs u-layout-wrap u-layout-wrap-1">
<div class="u-gutter-0 u-layout">
<div class="u-layout-row">
<div class="u-container-style u-layout-cell u-size-30 u-layout-cell-1">
<div class="u-border-2 u-border-custom-color-1 u-container-layout u-container-layout-1">
<img class="focusvoucher u-align-center u-image u-image-round u-radius-10 u-image-1" src="captiveportal-FOCUS1.png" alt="" data-image-width="150" data-image-height="134" data-href="#sec-1046" data-page-id="187521654">
<p class="u-align-center-xs u-text u-text-default u-text-2">Use your FOCUS voucher</p>
</div>
</div>
<div class="u-container-style u-layout-cell u-size-30 u-layout-cell-2">
<div class="u-border-2 u-border-custom-color-1 u-container-layout u-container-layout-2">
<img class="oneForYouvoucher u-align-center u-image u-image-round u-preserve-proportions u-radius-10 u-image-2" src="captiveportal-OneForYou-7.jpg" alt="" data-image-width="224" data-image-height="224" data-href="#sec-62b5" data-page-id="187521654">
<p class="u-align-center-xs u-text u-text-default u-text-3">Use your 1For voucher</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="u-clearfix u-section-3" id="sec-c8a6">
<div class="u-clearfix u-sheet u-sheet-1">
<h1 class="u-align-center u-text u-text-default-lg u-text-default-md u-text-default-sm u-text-default-xl u-text-1">FOCUS LOCAL</h1>
<div class="u-clearfix u-expanded-width u-gutter-10 u-layout-custom-sm u-layout-custom-xs u-layout-wrap u-layout-wrap-1">
<div class="u-gutter-0 u-layout">
<div class="u-layout-row">
<div class="u-container-style u-layout-cell u-size-30 u-layout-cell-1">
<div class="u-border-2 u-border-custom-color-1 u-container-layout u-valign-top-xs u-container-layout-1">
<img class="u-align-center u-image u-image-default u-preserve-proportions u-image-1" src="captiveportal-inethi.png" alt="" data-image-width="225" data-image-height="225" data-href="https://splash.inethilocal.net">
<p class="u-align-center u-text u-text-default u-text-2">FAST & FREE CONTENT</p>
</div>
</div>
<div class="u-container-style u-layout-cell u-size-30 u-layout-cell-2">
<div class="u-border-2 u-border-custom-color-1 u-container-layout u-container-layout-2">
<img class="u-align-center u-image u-image-default u-image-2" src="captiveportal-ShopLogo.png" alt="" data-image-width="290" data-image-height="341" data-href="http://wordpress.blackequations.co.za" data-target="_blank">
<p class="u-align-center u-text u-text-default u-text-3">BUSINESS LISTING & OVTV</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="u-clearfix u-section-4" id="sec-62b5">
<div class="u-clearfix u-sheet u-sheet-1">
<img class="u-align-center-xs u-image u-image-default u-image-1" src="captiveportal-OneForYou.jpg" alt="" data-image-width="224" data-image-height="224">
<h1 class="u-align-center u-text u-text-default u-text-1">CHOOSE YOUR<br>VOUCHER
</h1>
<div class="u-align-center u-expanded-width-xs u-form u-form-1">
<!--<form class="u-clearfix u-form-spacing-10 u-form-vertical u-inner-form" name="form" style="padding: 10px;" onsubmit="myFunction()">-->
<form id="One4YouForm" action="https://voucherapiprod.blackequations.co.za/redeem" method="POST" class="u-clearfix u-form-spacing-10 u-form-vertical u-inner-form" source="custom" name="form" style="padding: 10px;">
<div class="u-form-group u-form-radiobutton u-form-group-1">
<div class="u-form-radio-button-wrapper">
<input type="radio" name="radiobutton" value="TIME30M" required="required">
<label class="u-label" for="radiobutton">R1 - 30min</label>
<br>
<input type="radio" name="radiobutton" value="TIME1H" required="required">
<label class="u-label" for="radiobutton">R2 - 60min</label>
<br>
<input type="radio" name="radiobutton" value="TIME3H" required="required">
<label class="u-label" for="radiobutton">R5 _ 3Hr</label>
<br>
<input type="radio" name="radiobutton" value="TIME10H" required="required">
<label class="u-label" for="radiobutton">R8 - 10Hr</label>
<br>
<input type="radio" name="radiobutton" value="TIME1D" required="required">
<label class="u-label" for="radiobutton">R15 - 24Hr</label>
<br>
<input type="radio" name="radiobutton" value="TIME15D" required="required">
<label class="u-label" for="radiobutton">R40 - 15Days</label>
<br>
<input type="radio" name="radiobutton" value="TIME28D" required="required">
<label class="u-label" for="radiobutton">R60 - 28 Days (**Special**)</label>
<br>
<input type="radio" name="radiobutton" value="DATA1G" required="required">
<label class="u-label" for="radiobutton">R10 - 1Gig</label>
<br>
<input type="radio" name="radiobutton" value="DATA5G" required="required">
<label class="u-label" for="radiobutton">R40 - 5Gig</label>
<br>
<input type="radio" name="radiobutton" value="DATA10G" required="required">
<label class="u-label" for="radiobutton">R80 - 10Gig</label>
<br>
<input type="radio" name="radiobutton" value="DATA100G" required="required">
<label class="u-label" for="radiobutton">R120 - 100Gig</label>
<br>
<input type="radio" name="radiobutton" value="DATA300G" required="required">
<label class="u-label" for="radiobutton">R200 - 300Gig</label>
<br>
<input type="radio" name="radiobutton" value="DATA500G" required="required">
<label class="u-label" for="radiobutton">R300 - 500Gig</label>
<br>
</div>
</div>
<div class="u-form-group u-form-group-2">
<label for="text-76cf" class="u-label">Voucher Pin</label>
<input type="text" placeholder="Enter 1ForYou 16-Digit pin" id="voucherPin" name="number-1" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white" required="required" maxlength="16">
</div>
<div class="u-form-group u-form-phone u-form-group-5">
<label for="phone-3236" class="u-label">Cellphone</label>
<input type="tel" pattern="\+?\d{0,2}[\s\(\-]?([0-9]{3})[\s\)\-]?([\s\-]?)([0-9]{3})[\s\-]?([0-9]{2})[\s\-]?([0-9]{2})" placeholder="Enter your cellphone (e.g. 0789485736)" id="phoneNumber" name="phone" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white" required="" maxlength="10">
</div>
<div class="u-align-center u-form-group u-form-submit">
<a href="#" id="voucherButton" class="u-border-none u-btn u-btn-round u-btn-submit u-button-style u-custom-color-1 u-radius-10 u-btn-1">Submit</a>
<input type="submit" value="submit" class="u-form-control-hidden">
</div>
<!--<input type="button" value="submit" onclick="JavaScript:return Validator();" />-->
<div class="u-form-send-message u-form-send-success"> Thank you! Your message has been sent. </div>
<div class="u-form-send-message u-form-send-error "> Unable to send your message. Please fix errors then try again. </div>
<input type="hidden" value="" name="recaptchaResponse">
</form>
</div>
</div>
</section>
<section class="u-clearfix u-section-5" id="sec-1046">
<div class="u-align-left u-clearfix u-sheet u-sheet-1">
<img class="u-image u-image-default u-preserve-proportions u-image-1" src="captiveportal-FOCUSLARGE1.png" alt="" data-image-width="756" data-image-height="756">
<h1 class="u-align-center u-text u-text-default u-text-1">ENTER YOUR <br>FOCUS VOUCHER
</h1>
</div>
</section>
<section class="u-clearfix u-section-6" id="sec-f89f">
<div class="u-clearfix u-sheet u-valign-middle u-sheet-1">
<div class="u-align-center u-form u-form-1">
<form action="#" method="POST" class="u-clearfix u-form-spacing-10 u-form-vertical u-inner-form" source="custom" name="form-2" style="padding: 10px;">
<div class="u-form-group u-form-name">
<label for="name-5084" class="u-label">User</label>
<input type="text" placeholder="Enter your Name" id="name-5084" name="name" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white" required="">
</div>
<div class="u-form-group u-form-group-2">
<label for="text-61ba" class="u-label">Password</label>
<input type="text" placeholder="" id="text-61ba" name="text" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white" required="required">
</div>
<div class="u-form-group u-form-group-3">
<label for="text-ddf3" class="u-label">Voucher</label>
<input type="text" placeholder="" id="text-ddf3" name="text-1" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white">
</div>
<div class="u-form-agree u-form-group u-form-group-4">
<input type="checkbox" id="agree-b9d5" name="agree" class="u-agree-checkbox" required="">
<label for="agree-b9d5" class="u-label">I accept the <a href="#">Terms and Conditions</a>
</label>
</div>
<div class="u-align-center u-form-group u-form-submit">
<a href="#" class="u-border-none u-btn u-btn-round u-btn-submit u-button-style u-custom-color-1 u-radius-10 u-btn-1">Login<br>
</a>
<input type="submit" value="submit" class="u-form-control-hidden">
</div>
<div class="u-form-send-message u-form-send-success"> Thank you! Your message has been sent. </div>
<div class="u-form-send-error u-form-send-message"> Unable to send your message. Please fix errors then try again. </div>
<input type="hidden" value="" name="recaptchaResponse">
</form>
</div>
</div>
</section>
<section class="u-clearfix u-section-7" id="sec-b21f">
<div class="u-clearfix u-sheet u-sheet-1">
<h1 class="u-align-center u-text u-text-default-lg u-text-default-md u-text-default-xl u-text-1">FOCUS CONNECT <br>PACKAGES
</h1>
</div>
</section>
<section class="u-align-center u-clearfix u-section-8" id="sec-6c24">
<div class="u-align-left u-clearfix u-sheet u-valign-middle u-sheet-1">
<div class="u-expanded-width u-list u-list-1">
<div class="u-repeater u-repeater-1">
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-1"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-1"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-1">FOCUS CONNECT<br>30min
</h3>
<p class="u-align-center u-text u-text-2">R1<br>internet 30min<br>5Mb/s<br>unlimited<br>1 device<br>valid for 24Hr
</p>
</div>
</div>
<div class="u-align-center u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-2"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-2"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-3">FOCUS CONNECT<br>60min
</h3>
<p class="u-align-center u-text u-text-4"> R2<br>internet 60min<br>5Mb/s<br>unlimited<br>1 device<br>valid for 24Hr
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-3"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-3"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-5">FOCUS CONNECT<br>3Hr
</h3>
<p class="u-align-center u-text u-text-6"> R5<br>internet 180min<br>5Mb/s<br>unlimited<br>1 device<br>valid for 24Hr
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-4"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-4"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-7">FOCUS CONNECT<br>10Hr
</h3>
<p class="u-align-center u-text u-text-8"> R8<br>internet 600min<br>5Mb/s<br>unlimited<br>1 device<br>valid for 24Hr
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-5"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-5"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-9">FOCUS CONNECT<br>24Hr
</h3>
<p class="u-align-center u-text u-text-10"> R15<br>internet 1440min<br>5Mb/s<br>unlimited<br>1 device<br>valid for 24Hr
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-6"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-6"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-11">FOCUS CONNECT<br>15Days
</h3>
<p class="u-align-center u-text u-text-12"> R40<br>internet 15days<br>5Mb/s<br>unlimited<br>1 device<br>valid for 15days
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-7"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-7"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-13">FOCUS CONNECT<br>28Days
</h3>
<p class="u-align-center u-text u-text-14"> R60<br>internet 28days<br>5Mb/s<br>unlimited<br>1 device<br>valid for 28days
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-8"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-8"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-15"> FOCUS CONNECT<br>1Gig
</h3>
<p class="u-align-center u-text u-text-16"> R10<br>1Gig of data<br>10Mb/s<br>unlimited devices<br>valid for 28days
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-9"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-9"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-17"> FOCUS CONNECT<br>5Gig
</h3>
<p class="u-align-center u-text u-text-18"> R40<br>5Gig of data<br>10Mb/s<br>unlimited devices<br>valid for 28days
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-10"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-10"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-19"> FOCUS CONNECT<br>10Gig
</h3>
<p class="u-align-center u-text u-text-20"> R80<br>10Gig of data<br>10Mb/s<br>unlimited devices<br>valid for 56days
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-11"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-11"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-21"> FOCUS CONNECT<br>100Gig
</h3>
<p class="u-align-center u-text u-text-22"> R120<br>100Gig of data<br>10Mb/s<br>unlimited devices<br>valid for 84days
</p>
</div>
</div>
<div class="u-border-2 u-border-custom-color-1 u-container-style u-list-item u-repeater-item">
<div class="u-container-layout u-similar-container u-valign-top u-container-layout-12"><span class="u-file-icon u-icon u-text-custom-color-1 u-icon-12"><img src="captiveportal-1.png" alt=""></span>
<h3 class="u-align-center u-text u-text-default u-text-23"> FOCUS CONNECT<br>300Gig
</h3>
<p class="u-align-center u-text u-text-24"> R200<br>300Gig of data<br>10Mb/s<br>unlimited devices<br>valid for 84days
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="u-clearfix u-section-9" id="sec-ff60">
<div class="u-clearfix u-sheet u-sheet-1">
<h1 class="u-align-center u-text u-text-1">LOST<br>VOUCHER PIN
</h1>
<div class="u-align-center u-form u-form-1">
<form id="queryForm" action="#" method="POST" class="u-clearfix u-form-spacing-10 u-form-vertical u-inner-form" source="custom" name="form-1" style="padding: 10px;">
<div class="u-form-group u-form-phone u-form-group-1">
<label for="phone-44ee" class="u-label">Cellphone</label>
<input type="tel" pattern="\+?\d{0,3}[\s\(\-]?([0-9]{2,3})[\s\)\-]?([\s\-]?)([0-9]{3})[\s\-]?([0-9]{2})[\s\-]?([0-9]{2})" placeholder="Enter your cellphone (e.g. 0786458235)" id="usedPhoneNumber" name="phone" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white" required="">
</div>
<div class="u-form-group u-form-group-2">
<label for="text-d977" class="u-label">Enter 16-Digit 1ForYou Voucher Pin</label>
<input type="text" placeholder="Use the 1ForYou voucher Pin Used to purchase Wi-Fi access." id="usedVoucherPin" name="number" class="u-border-1 u-border-grey-30 u-input u-input-rectangle u-white" required="required" maxlength="16">
</div>
<div class="u-align-center u-form-group u-form-submit">
<a href="#" id="queryButton" class="u-border-none u-btn u-btn-round u-btn-submit u-button-style u-custom-color-1 u-radius-10 u-btn-1">Submit</a>
<input type="submit" value="submit" class="u-form-control-hidden">
</div>
<div class="u-form-send-message u-form-send-success"> Thank you! Your message has been sent. </div>
<div class="u-form-send-error u-form-send-message"> Unable to send your message. Please fix errors then try again. </div>
<input type="hidden" value="" name="recaptchaResponse">
</form>
</div>
</div>
</section>
</body>
</html>