-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
655 lines (569 loc) · 22.2 KB
/
index.php
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
653
654
655
<?php
$home='active';
include('header.php'); ?>
<?php
$servername = "localhost";
$username = "capitalc_001";
$password = "An0therrichard3303";
$dbname = "capitalc_001";
$date = date('d-m-Y H:m:s');
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
if (isset($_POST['username'])){
$username = $_POST['username'];
$password = $_POST['password'];
if($username == "blacky"){
if($password == "admin"){
echo'<script>window.location =
"admin.php"</script>';
}else{
$fail='<div class="alert alert-danger">Invalid Login</div>';
}
}else{
$sql = "SELECT * FROM register WHERE username = '$username' AND password = '$password'";
$result = $conn->query($sql);
if ($result->num_rows > 0 ) {
$_SESSION["username"] = $username;
$_SESSION["password"] = $password;
$charactersotpl = '0123456789';
$otpl = '';
$max = strlen($charactersotpl) - 1;
for ($i = 0; $i < 6; $i++) {
$otpl .= $charactersotpl[mt_rand(0, $max)];
}
$sql = "UPDATE register SET d = '$otpl' WHERE username = '".$_SESSION["username"]."'";
if ($conn->query($sql) === TRUE) {
$sql = "SELECT * FROM register WHERE username = '".$username."' AND password = '".$password."'";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) {
$name = $row['name'];
$accountnumber = $row['account_number'];
$accounttype = $row['account_type'];
$accountlimit = $row['account_limit'];
$accountbalance = $row['account_balance'];
$address = $row['address'];
$phone = $row['phone'];
$email = $row['email'];
$transferstatus = $row['transaction_status'];
$accountstatus = $row['account_status'];
$dp = $row['e'];
}
//mail OTP to mail
$to = ''.$email.'';
$subject = 'OTP (AUTHORIZE LOGIN)';
$headers = 'From: Capital C.U Online <noreply@capitalcuonline.com>' . PHP_EOL .
'Reply-To: Capital C.U Online <noreply@capitalcuonline.com>' . PHP_EOL .
'X-Mailer: PHP/' . phpversion();
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=UTF-8\r\n";
$message = '<p><strong><div align=center><font color=#555bc6>Capital Credit Union OTP</div></font></strong><br> Good day '.$name.',<br> Kindly use the code below to verify login.<br><br>
<strong>
'.$otpl.'
<br><br></strong>
Kindly report this message to support@capitalcuonline.com if you are not the one trying to Login.
<br>
<br>
<font color="#8688a0" size=2>This is an automated email from Capital C.U Online please do not reply</font>
</p>';
mail($to, $subject, $message, $headers);
//sending otp sms ebulksms.com
$json_url = "http://api.ebulksms.com:8080/sendsms.json";
$xml_url = "http://api.ebulksms.com:8080/sendsms.xml";
$http_get_url = "http://api.ebulksms.com:8080/sendsms";
$username = '';
$apikey = '';
//Function to connect to SMS sending server using HTTP POST
function doPostRequest($url, $arr_params, $headers = array('Content-Type: application/x-www-form-urlencoded')) {
$response = array();
$final_url_data = $arr_params;
if (is_array($arr_params)) {
$final_url_data = http_build_query($arr_params, '', '&');
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $final_url_data);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_NOSIGNAL, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$response['body'] = curl_exec($ch);
$response['code'] = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
return $response['body'];
}
function useJSON($url, $username, $apikey, $flash, $sendername, $messagetext, $recipients) {
$gsm = array();
$country_code = '234';
$arr_recipient = explode(',', $recipients);
foreach ($arr_recipient as $recipient) {
$mobilenumber = trim($recipient);
if (substr($mobilenumber, 0, 1) == '0'){
$mobilenumber = $country_code . substr($mobilenumber, 1);
}
elseif (substr($mobilenumber, 0, 1) == '+'){
$mobilenumber = substr($mobilenumber, 1);
}
$generated_id = uniqid('int_', false);
$gsm['gsm'][] = array('msidn' => $mobilenumber, 'msgid' => $generated_id);
}
$message = array(
'sender' => $sendername,
'messagetext' => $messagetext,
'flash' => "{$flash}",
);
$request = array('SMS' => array(
'auth' => array(
'username' => $username,
'apikey' => $apikey
),
'message' => $message,
'recipients' => $gsm
));
$json_data = json_encode($request);
if ($json_data) {
$response = doPostRequest($url, $json_data, array('Content-Type: application/json'));
$result = json_decode($response);
return $result->response->status;
} else {
return false;
}
}
if (isset($_POST['username'])) {
$username = "nwudoebuka@gmail.com";
$apikey = "0b4bd019a7292ff97d7b626335afe0176d2a2855";
$sendername = substr($_POST['sender_name'], 0, 11);
$recipients = $phone;
$message = "Good day,$name. use this code $otpl to authoriz Login.";
$flash = 0;
if (get_magic_quotes_gpc()) {
$message = stripslashes($message);
}
$message = substr($message, 0, 160);
#Use the next line for HTTP POST with JSON
$result = useJSON($json_url, $username, $apikey, $flash, $sendername, $message, $recipients);
// echo $result;
#Uncomment the next line and comment the one above if you want to use HTTP POST with XML
//$result = useXML($xml_url, $username, $apikey, $flash, $sendername, $message, $recipients);
#Uncomment the next line and comment the ones above if you want to use simple HTTP GET
//$result = useHTTPGet($http_get_url, $username, $apikey, $flash, $sendername, $message, $recipients);
}
function useXML($url, $username, $apikey, $flash, $sendername, $messagetext, $recipients) {
$country_code = '234';
$arr_recipient = explode(',', $recipients);
$count = count($arr_recipient);
$msg_ids = array();
$recipients = '';
$xml = new SimpleXMLElement('<SMS></SMS>');
$auth = $xml->addChild('auth');
$auth->addChild('username', $username);
$auth->addChild('apikey', $apikey);
$msg = $xml->addChild('message');
$msg->addChild('sender', $sendername);
$msg->addChild('messagetext', $messagetext);
$msg->addChild('flash', $flash);
$rcpt = $xml->addChild('recipients');
for ($i = 0; $i < $count; $i++) {
$generated_id = uniqid('int_', false);
$generated_id = substr($generated_id, 0, 30);
$mobilenumber = trim($arr_recipient[$i]);
if (substr($mobilenumber, 0, 1) == '0') {
$mobilenumber = $country_code . substr($mobilenumber, 1);
} elseif (substr($mobilenumber, 0, 1) == '+') {
$mobilenumber = substr($mobilenumber, 1);
}
$gsm = $rcpt->addChild('gsm');
$gsm->addchild('msidn', $mobilenumber);
$gsm->addchild('msgid', $generated_id);
}
$xmlrequest = $xml->asXML();
if ($xmlrequest) {
$result = doPostRequest($url, $xmlrequest, array('Content-Type: application/xml'));
$xmlresponse = new SimpleXMLElement($result);
return $xmlresponse->status;
}
return false;
}
function useHTTPGet($url, $username, $apikey, $flash, $sendername, $messagetext, $recipients) {
$query_str = http_build_query(array('username' => $username, 'apikey' => $apikey, 'sender' => $sendername, 'messagetext' => $messagetext, 'flash' => $flash, 'recipients' => $recipients));
return file_get_contents("{$url}?{$query_str}");
}
//otp sms ends here
echo'<script>window.location =
"auth.php"</script>';
}
}else{
$fail='<div class="alert alert-danger">Invalid Login</div>';
}
}
}
?>
<!-- banner -->
<div class="container">
<div class="banner-text agileits-w3layouts">
<div id="top" class="callbacks_container">
<ul class="rslides" id="slider3">
<li>
<div class="banner-textagileinfo">
<?php
if (isset($success)){
echo $success;
}
if (isset($fail)){
echo $fail;
}
?>
<h6>Welcome To Capital Credit Union Online Bank</h6>
<h3>Bank you can access from any where</h3>
<p>Capital Credit Union. is a leading global financial services firm and one of the largest banking institutions in the United States , with operations worldwide.</p>
<div class="agileits-banner-bot">
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>01</h5>
<h4>convenient</h4>
<p>Banking is made so convenient at Capital C.U, all accounts are accessible globally.</p>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>02</h5>
<h4>secure</h4>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>03</h5>
<h4>reliable</h4>
</div>
<div class="clearfix"></div>
</div>
</div>
</li>
<li>
<div class="banner-textagileinfo">
<?php
if (isset($success)){
echo $success;
}
if (isset($fail)){
echo $fail;
}
?>
<h6>E-Banking at your convinience</h6>
<h3>Safe,secure and convenient banking</h3>
<p>Capital Credit Union Onine is a subsidiary of Capital Credit Union Group with a sole motive of creating a financial institution accessible from any where in the world.</p>
<div class="agileits-banner-bot">
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>01</h5>
<h4>convenient</h4>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>02</h5>
<h4>secure</h4>
<p>Our services are the safest, very secure and reliable.</p>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>03</h5>
<h4>reliable</h4>
</div>
<div class="clearfix"></div>
</div>
</div>
</li>
<li>
<div class="banner-textagileinfo">
<?php
if (isset($success)){
echo $success;
}
if (isset($fail)){
echo $fail;
}
?>
<h6>Access to loans from any where you are</h6>
<h3>Low Interest Loans</h3>
<p>are you out of the country and out of cash? Do you have need to borrow? do not worry, we give low interest loans.</p>
<div class="agileits-banner-bot">
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>01</h5>
<h4>convenient</h4>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>02</h5>
<h4>secure</h4>
</div>
<div class="col-md-4 col-sm-4 col-xs-4 w3l-bb-grid1">
<h5>03</h5>
<h4>reliable</h4>
<p>Capital C.U Online has built a reputation far beyond financial institutions</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- about -->
<div class="home-about w3ls-section">
<div class="container">
<!-- about top-->
<div class="w3ls-about agile-section">
<div class="w3-agileits-about-grids">
<div class="col-md-6 col-sm-6 col-xs-6 agileits-title">
<h3>what makes <img src="images/capital.jpg" height=200px width=250px alt="logo"/>Unique?</h3>
</div>
<div class="col-md-6 col-sm-6 col-xs-6 agile-about-bottom-right">
<p>All the key features of Capital C.U is accessible from any corner of the world account holders can send/recieve money and can make withdrawals
with cards issued, we are globally recognised, hence, transactions can be made with local banks.</p>
<p class="w3ls-about-text">We give loans to account holders irrespective of their location, with this we have helped numerous customers get out of stranded zones.</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<!-- //about top-->
<!-- about bottom-->
<div class="about-bottom">
<div class="col-md-6 about-w3right">
</div>
<div class="col-md-6 about-w3left">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h5 class="panel-title asd">
<a class="pa_italic collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span><i class="glyphicon glyphicon-minus" aria-hidden="true"></i>Savings account
</a>
</h5>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne" aria-expanded="false" style="height: 0px;">
<div class="panel-body panel_text">
Open a savings account with us online and start recieving and sending money at ease.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h5 class="panel-title asd">
<a class="pa_italic collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span><i class="glyphicon glyphicon-minus" aria-hidden="true"></i>Current account
</a>
</h5>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo" aria-expanded="false" style="height: 0px;">
<div class="panel-body panel_text">
You can have a current account with us just in a click, write checks and send to friends, use your account for mobile deposit to other banks.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h5 class="panel-title asd">
<a class="pa_italic collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span><i class="glyphicon glyphicon-minus" aria-hidden="true"></i>Funded
</a>
</h5>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree" aria-expanded="false" style="height: 0px;">
<div class="panel-body panel_text">
Do you have a business or a job that will but do not have money to in your account?. dont worry create a funded account with us and have your account funded. Note we verify your business/job and your ability of refund.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<!-- //about-bottom -->
<!-- about-bottom-grid -->
<div class="wthree-about-bot-grid-sec">
<div class="agileits-about-pos">
<h2>secure banking</h2>
</div>
<div class="col-md-6 col-sm-6 w3ls-abg w3ls-abg1 abg1">
<h4>Safe,secure and convenient banking</h4>
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.</p>
</div>
<div class="col-md-6 col-sm-6 w3ls-abg w3ls-abg2 abg4">
<h4>it’s your money. manage it your way.</h4>
<p>managing your funds should not be stressful, our E-banking makes your money go with you electronically.</p>
</div>
<div class="col-md-6 col-sm-6 w3ls-abg w3ls-abg1 abg2">
<h4>Pay people. Pay bills.Transfer money.</h4>
<p>you can manage your account and perform any transactions with out visiting our banking hall..</p>
</div>
<div class="col-md-6 col-sm-6 w3ls-abg w3ls-abg2 abg3">
<h4>Mobile Privacy and Security</h4>
<p>you can manage your account and perform any transactions with out visiting our banking hall.</p>
</div>
<div class="clearfix"> </div>
</div>
<!-- //about-bottom-grid-->
</div>
<!-- //about -->
<!--services-->
<div class="w3ls-section services">
<div class="container">
<div class="services-left">
<h4 class="title">online banking</h4>
<h5>any time,anywhere.</h5>
<p class="data">you are one click away from enjoying the best banking service.</p>
<div class="more">
<a href="#" data-toggle="modal" data-target="#myModal"> Create account now!</a>
</div>
</div>
<div class="services-right">
<div class="services-grid">
<div class="col-md-2 col-sm-2 col-xs-2 sr-icon">
<span class="fa fa-lock" aria-hidden="true"></span>
</div>
<div class="col-md-10 col-sm-10 col-xs-10 sr-txt">
<h5>safe & secure</h5>
<p></p>
</div>
<div class="clearfix"></div>
</div>
<div class="services-grid">
<div class="col-md-2 col-sm-2 col-xs-2 sr-icon">
<span class="fa fa-clock-o" aria-hidden="true"></span>
</div>
<div class="col-md-10 col-sm-10 col-xs-10 sr-txt">
<h5>save time</h5>
<p></p>
</div>
<div class="clearfix"></div>
</div>
<div class="services-grid">
<div class="col-md-2 col-sm-2 col-xs-2 sr-icon">
<span class="fa fa-gg" aria-hidden="true"></span>
</div>
<div class="col-md-10 col-sm-10 col-xs-10 sr-txt">
<h5>transfer money</h5>
<p></p>
</div>
<div class="clearfix"></div>
</div>
<div class="services-grid">
<div class="col-md-2 col-sm-2 col-xs-2 sr-icon">
<span class="fa fa-credit-card-alt" aria-hidden="true"></span>
</div>
<div class="col-md-10 col-sm-10 col-xs-10 sr-txt">
<h5>pay bills</h5>
<p></p>
</div>
<div class="clearfix"> </div>
</div>
<div class="services-grid">
<div class="col-md-2 col-sm-2 col-xs-2 sr-icon">
<span class="fa fa-shopping-cart" aria-hidden="true"></span>
</div>
<div class="col-md-10 col-sm-10 col-xs-10 sr-txt">
<h5>Shop Online</h5>
<p></p>
</div>
<div class="clearfix"> </div>
</div>
<div class="clearfix"> </div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<!--//services-->
<!-- testimonials -->
<div class="testimonials w3ls-section" id="testimonials">
<div class="container">
<h3 class="h3-w3l">Testimonials</h3>
<div class="agile_testimonials_grids">
<div class="col-md-6 col-sm-6 agile_testimonials_grid">
<div class="agile_testimonials_grid1">
<div class="w3_agile_testimonials_grid_right test-tooltip">
<p>Capital Credit Union Online is really a life saver, I opened a "funded account" online and after every documentation and verification I actually
got a funded account with enough money to improve my business.</p>
</div>
<div class="w3_agile_testimonials_grid">
<div class="w3_agile_testimonials_grid_left">
<div class="col-md-3 col-sm-3 col-xs-3 w3l-testi-img">
<img src="images/13.jpg" alt=" " class="img-responsive"/>
</div>
<div class="col-md-9 col-sm-9 col-xs-9 w3l-testi-txt">
<h4>Tyson</h4>
<p>Business Man</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-6 col-sm-6 agile_testimonials_grid">
<div class="agile_testimonials_grid1">
<div class="w3_agile_testimonials_grid_right test-tooltip">
<p>I love Capital Credit Union. I created and deposited money into a savings account online I was even assigned an account officer who is there
to guide me through...its really Amazing!.</p>
</div>
<div class="w3_agile_testimonials_grid">
<div class="w3_agile_testimonials_grid_left">
<div class="col-md-3 col-sm-3 col-xs-3 w3l-testi-img">
<img src="images/10.jpg" alt=" " class="img-responsive"/>
</div>
<div class="col-md-9 col-sm-9 col-xs-9 w3l-testi-txt">
<h4>Alejandra</h4>
<p>Student</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-6 col-sm-6 agile_testimonials_grid">
<div class="agile_testimonials_grid1">
<div class="w3_agile_testimonials_grid_right test-tooltip">
<p>I got a good retirement plan from Capital C.U and today I travle around on vacations and my account is accessible from anywhere.</p>
</div>
<div class="w3_agile_testimonials_grid">
<div class="w3_agile_testimonials_grid_left">
<div class="col-md-3 col-sm-3 col-xs-3 w3l-testi-img">
<img src="images/11.jpg" alt=" " class="img-responsive"/>
</div>
<div class="col-md-9 col-sm-9 col-xs-9 w3l-testi-txt">
<h4>Charles</h4>
<p>Retired Lawyer</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="col-md-6 col-sm-6 agile_testimonials_grid">
<div class="agile_testimonials_grid1">
<div class="w3_agile_testimonials_grid_right test-tooltip">
<p> they value their customers, I got a loan from them to start up my clinic...I was assigned an account officer who made everything so easy. I just sat at home and did everything...thank to Capital C.U.</p>
</div>
<div class="w3_agile_testimonials_grid">
<div class="w3_agile_testimonials_grid_left">
<div class="col-md-3 col-sm-3 col-xs-3 w3l-testi-img">
<img src="images/12.jpg" alt=" " class="img-responsive" />
</div>
<div class="col-md-9 col-sm-9 col-xs-9 w3l-testi-txt">
<h4>Jessie</h4>
<p>Doctor</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //testimonials -->
<?php include('footer.php'); ?>