This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathinstaller.php
672 lines (624 loc) · 44.3 KB
/
installer.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
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
<?php
include "installer/installer.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="favicon.ico" />
<!--<link rel="icon" type="image/png" href="assets/img/favicon.png">!-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
Streamity.tv 1.0 URL Reseller Installer
</title>
<meta content="width=device-width, initial-scale=1.0, shrink-to-fit=no" name="viewport" />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- CSS Files -->
<link href="assets/css/material-dashboard.css?v=2.1.2" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="assets/demo/demo.css" rel="stylesheet" />
</head>
<body class="">
<script src="installer/script.js"></script>
<div class="wrapper">
<div class="sidebar" data-color="purple" data-background-color="white" data-image="assets/img/sidebar-1.jpg?0">
<!--
Tip 1: You can change the color of the sidebar using: data-color="purple | azure | green | orange | danger"
Tip 2: you can also add an image using data-image tag
-->
<div class="logo">
<a href="" class="simple-text logo-normal">
<img src="logo.png?0" alt="" style="max-height: 50px; filter: drop-shadow(1px 1px 5px #6d6d6d);" />
</a>
</div>
<div class="sidebar-wrapper">
<ul class="nav">
<li class="nav-item active">
<a class="nav-link" href="#">
<i class="material-icons">dashboard</i>
<p>Installer</p>
</a>
</li>
<div class="dropdown-divider"></div>
</ul>
</div>
</div>
<div class="main-panel">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-transparent navbar-absolute fixed-top">
<div class="container-fluid">
<div class="navbar-wrapper">
<a class="navbar-brand" href="javascript:;">Welcome in Streamity.tv [1.0] URL installer</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon icon-bar"></span>
<span class="navbar-toggler-icon icon-bar"></span>
<span class="navbar-toggler-icon icon-bar"></span>
</button>
</div>
</nav>
<!-- End Navbar -->
<div class="content">
<div class="container-fluid">
<div>
IMPORTANT: Streamity.tv player <strong>requires</strong> HTTP protocol (no HTTPS SSL). <br />
The login and dashboard page can run on HTTP and HTTPS. <br />
<!--It is reccomended to <strong>NOT</strong> use cloudflare. -->
</div>
<form action="#" method="post" id="myform" enctype="multipart/form-data">
<h4 style="color: red;">
<strong><?php echo $error;?></strong>
</h4>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">Basic configuration</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<div class="row">
<div class="col-lg3 col-md-4 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">IPTV Name (ex. Streamity TV)</label>
<input type="text" name="iptv_name" class="form-control" />
</div>
<div style="display:none">
<input type="text" name="path" id="path" class="form-control" />
</div>
</div>
</div>
<br />
<div class="row">
<div class="col-lg3 col-md-5 col-sm-6">
<label>Upload IPTV Logo</label><br />
<input type="file" accept=".png" name="iptv_logo" />
</div>
<div class="col-lg3 col-md-5 col-sm-6">
<label>Upload IPTV Icon</label><br />
<input type="file" accept=".ico" name="iptv_logo_icon" />
</div>
</div>
<br/>
<label>
<input type="checkbox" value="true" name="dashboard_home" />
<span>
Replace index page with dashboard (!! This will delete your index.html page !!)
</span>
</label>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">Anti-abuse configuration</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<label>
<input type="radio" name="iptv_limitation" value="1" onchange="document.getElementById('limitation_box').style.display='none';document.getElementById('limitation_box2').style.display='none';" checked="true"/>
<span>No limitation</span>
</label>
<br />
<label> <input type="radio" value="2" name="iptv_limitation" onchange="document.getElementById('limitation_box').style.display='';document.getElementById('limitation_box2').style.display='none';" /> <span> Only IPTVEditor url</span> </label>
<div id="limitation_box" style="display: none;">
<label>
Only iptveditor url will be accepted.
</label>
</div>
<br />
<label>
<input type="radio" name="iptv_limitation" value="3" onchange="document.getElementById('limitation_box').style.display='none';document.getElementById('limitation_box2').style.display='';"/>
<span>Custom url</span>
</label>
<div id="limitation_box2" style="display: none;">
<label>
Only url containing this word will be accepted.
</label>
<div class="col-lg3 col-md-9 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Custom Url (ex. iptveditor.com)</label>
<input type="text" name="limitation_url" class="form-control" />
</div>
</div>
</div>
<br />
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">EPG configuration</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<label>
<input type="radio" name="api_enable" value="1" onchange="document.getElementById('db_box').style.display='';document.getElementById('epg_box').style.display='none';" />
<span>XML + Database (reccomended for 20+ MB epg file)</span>
</label>
<br />
<div id="db_box" style="display: none;">
<label>
Every 4 hours Streamity.tv player will convert your epg xml file into an SQL database.<br />
This settings is the most reccommended if your epg xml file is over 20MB and will offer the best experience to your customers.
</label>
<div class="col-lg3 col-md-9 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">EPG Url (ex. http://test.com:8080/xmltv.php?user=ciao&password=vita)</label>
<input type="text" name="epg_url" class="form-control" />
</div>
</div>
<label id="epg_db_result" style="visibility: hidden;"></label>
<br />
<div class="row">
<div class="col-lg3 col-md-3 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Database URL</label>
<input type="text" id="epg_db_url" name="epg_db_url" value="localhost" class="form-control" />
</div>
</div>
<div class="col-lg3 col-md-3 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Database Name</label>
<input type="text" id="epg_db_name" name="epg_db_name" class="form-control" />
</div>
</div>
<div class="col-lg3 col-md-3 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Database Username</label>
<input type="text" id="epg_db_user" name="epg_db_user" class="form-control" />
</div>
</div>
<div class="col-lg3 col-md-3 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Database Password</label>
<input type="password" id="epg_db_pass" name="epg_db_pass" class="form-control" />
</div>
</div>
<div class="col-lg3 col-md-2 col-sm-6">
<button onclick="testDatabase()" type="button" class="btn btn-primary">
Test database
<div class="ripple-container"></div>
<div class="ripple-container"></div>
</button>
</div>
</div>
</div>
<label> <input type="radio" value="2" name="api_enable" onchange="document.getElementById('db_box').style.display='none';document.getElementById('epg_box').style.display='';" /> <span> Default EPG URL</span> </label>
<div id="epg_box" style="display: none;">
<div class="col-lg3 col-md-9 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">EPG Url (ex. http://test.com:8080/xmltv.php?user=ciao&password=vita)</label>
<input type="text" name="epg_url_custom" class="form-control" />
</div>
</div>
</div>
<br />
<label>
<input type="radio" name="api_enable" value="3" onchange="document.getElementById('db_box').style.display='none';document.getElementById('epg_box').style.display='none';" checked="true"/>
<span>EPG Url provided by user</span>
</label>
<br />
<label>
<input type="radio" name="api_enable" value="4" onchange="document.getElementById('db_box').style.display='none';document.getElementById('epg_box').style.display='none';" />
<span>Disable epg (every reference to EPG will be removed)</span>
</label>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">TMDb Api (optional)</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<label>
Streamity.tv syncs with TMDb missing Vods and Series info (as cover, description, episode series title etc etc). <br />
VODs and Series info will be searched first from IPTV provider server and then from TMDb.<br />
<br />
This settings is optional. Leave this field empty if you don't want to use TMDb Api.
</label>
<br />
<div class="row">
<div class="col-lg3 col-md-4 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">TMDB Api</label>
<input type="text" name="tmdb_api" class="form-control" />
</div>
</div>
<div class="col-lg3 col-md-4 col-sm-6">
<button onclick="window.open('https://developers.themoviedb.org/3/getting-started/introduction')" type="button" class="btn btn-primary">
Get TMDb Api
<div class="ripple-container"></div>
<div class="ripple-container"></div>
</button>
</div>
</div>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">reCAPTCHA v2 (optional)</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<label>
reCAPTCHA is a free security service that protects your websites from spam and abuse.<br />
It will be integrated in the login page.<br />
IMPORTANT: Is advised to use an SSL protocol (https) in the login page to avoid issue with reCAPTCHA.<br />
<br />
This settings is optional. Leave this field empty if you don't want to use reCAPTCHA.
</label>
<br />
<div class="row">
<div class="col-lg3 col-md-4 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Public key (client)</label>
<input type="text" name="recaptcha_client" class="form-control" />
</div>
</div>
<div class="col-lg3 col-md-4 col-sm-6">
<div class="form-group bmd-form-group is-filled">
<label class="bmd-label-floating">Private key (server)</label>
<input type="text" name="recaptcha_server" class="form-control" />
</div>
</div>
</div>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">Disable components</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-6">
<label>
<input type="checkbox" value="1" name="disable_live">
<span>
Disable Live channels
</span>
</label>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<label>
<input type="checkbox" value="1" name="disable_movie">
<span>
Disable Movie
</span>
</label>
</div>
<div class="col-lg-4 col-md-6 col-sm-6">
<label>
<input type="checkbox" value="1" name="disable_series">
<span>
Disable Series
</span>
</label>
</div>
</div>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="card">
<div class="card-header card-header-tabs card-header-primary settingsTitle">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<h4 class="nav-tabs-title">Advanced configuration (optional)</h4>
</div>
</div>
</div>
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active">
<table class="table">
<tbody>
<label>
When a customer login for the first time on Streamity.tv player on a new browser, the server will calculate the number of channels/vods/series avaible on the account. <br />
This procedure will delay the login of 30-40 seconds for IPTV lists with a lot of channels. <br />
Checking this box will disable this feature. <br />
Number of channels/vod/series will be continue to be calculated during the opening of each player. <br />
(for example: Live channels player will calculate only number of live channels)
</label>
<br />
<label>
<input type="checkbox" value="true" name="disable_count" />
<span>
Disable channels count during first login
</span>
</label>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<br />
<div class="row">
<div class="col-lg3 col-md-12 col-sm-6">
<button type="submit" name="install" value="install" class="btn btn-primary" style="width: 100%;">
Install Streamity.tv
<div class="ripple-container"></div>
<div class="ripple-container"></div>
<div class="ripple-container"></div>
</button>
</div>
</div>
</form>
</div>
</div>
<footer class="footer">
<div class="container-fluid">
<div class="copyright float-right">
©
<script>
document.write(new Date().getFullYear());
</script>
Powered by <a href="https://streamity.tv">Streamity.tv</a>
</div>
</div>
</footer>
</div>
</div>
<!-- Core JS Files -->
<script src="assets/js/core/jquery.min.js"></script>
<script src="assets/js/core/popper.min.js"></script>
<script src="assets/js/core/bootstrap-material-design.min.js"></script>
<script src="assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
<!-- Forms Validations Plugin -->
<script src="assets/js/plugins/jquery.validate.min.js"></script>
<!-- Plugin for the Wizard, full documentation here: https://github.com/VinceG/twitter-bootstrap-wizard -->
<!-- Plugin for the Sliders, full documentation here: http://refreshless.com/nouislider/ -->
<script src="assets/js/plugins/nouislider.min.js"></script>
<!-- Include a polyfill for ES6 Promises (optional) for IE11, UC Browser and Android browser support SweetAlert -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.4.1/core.js"></script>
<!-- Control Center for Material Dashboard: parallax effects, scripts for the example pages etc -->
<script src="assets/js/material-dashboard.js?v=2.1.2" type="text/javascript"></script>
<!-- Material Dashboard DEMO methods, don't include it in your project! -->
<script src="assets/demo/demo.js"></script>
<!--
=========================================================
Material Dashboard - v2.1.2
=========================================================
Product Page: https://www.creative-tim.com/product/material-dashboard
Copyright 2020 creative-tim.com (https://www.creative-tim.com)
Coded by creative-tim.com
=========================================================
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -->
<script>
$(document).ready(function () {
$().ready(function () {
$sidebar = $(".sidebar");
$sidebar_img_container = $sidebar.find(".sidebar-background");
$full_page = $(".full-page");
$sidebar_responsive = $("body > .navbar-collapse");
window_width = $(window).width();
fixed_plugin_open = $(".sidebar .sidebar-wrapper .nav li.active a p").html();
if (window_width > 767 && fixed_plugin_open == "Dashboard") {
if ($(".fixed-plugin .dropdown").hasClass("show-dropdown")) {
$(".fixed-plugin .dropdown").addClass("open");
}
}
$(".fixed-plugin a").click(function (event) {
// Alex if we click on switch, stop propagation of the event, so the dropdown will not be hide, otherwise we set the section active
if ($(this).hasClass("switch-trigger")) {
if (event.stopPropagation) {
event.stopPropagation();
} else if (window.event) {
window.event.cancelBubble = true;
}
}
});
$(".fixed-plugin .active-color span").click(function () {
$full_page_background = $(".full-page-background");
$(this).siblings().removeClass("active");
$(this).addClass("active");
var new_color = $(this).data("color");
if ($sidebar.length != 0) {
$sidebar.attr("data-color", new_color);
}
if ($full_page.length != 0) {
$full_page.attr("filter-color", new_color);
}
if ($sidebar_responsive.length != 0) {
$sidebar_responsive.attr("data-color", new_color);
}
});
$(".fixed-plugin .background-color .badge").click(function () {
$(this).siblings().removeClass("active");
$(this).addClass("active");
var new_color = $(this).data("background-color");
if ($sidebar.length != 0) {
$sidebar.attr("data-background-color", new_color);
}
});
$(".fixed-plugin .img-holder").click(function () {
$full_page_background = $(".full-page-background");
$(this).parent("li").siblings().removeClass("active");
$(this).parent("li").addClass("active");
var new_image = $(this).find("img").attr("src");
if ($sidebar_img_container.length != 0 && $(".switch-sidebar-image input:checked").length != 0) {
$sidebar_img_container.fadeOut("fast", function () {
$sidebar_img_container.css("background-image", 'url("' + new_image + '")');
$sidebar_img_container.fadeIn("fast");
});
}
if ($full_page_background.length != 0 && $(".switch-sidebar-image input:checked").length != 0) {
var new_image_full_page = $(".fixed-plugin li.active .img-holder").find("img").data("src");
$full_page_background.fadeOut("fast", function () {
$full_page_background.css("background-image", 'url("' + new_image_full_page + '")');
$full_page_background.fadeIn("fast");
});
}
if ($(".switch-sidebar-image input:checked").length == 0) {
var new_image = $(".fixed-plugin li.active .img-holder").find("img").attr("src");
var new_image_full_page = $(".fixed-plugin li.active .img-holder").find("img").data("src");
$sidebar_img_container.css("background-image", 'url("' + new_image + '")');
$full_page_background.css("background-image", 'url("' + new_image_full_page + '")');
}
if ($sidebar_responsive.length != 0) {
$sidebar_responsive.css("background-image", 'url("' + new_image + '")');
}
});
$(".switch-sidebar-image input").change(function () {
$full_page_background = $(".full-page-background");
$input = $(this);
if ($input.is(":checked")) {
if ($sidebar_img_container.length != 0) {
$sidebar_img_container.fadeIn("fast");
$sidebar.attr("data-image", "#");
}
if ($full_page_background.length != 0) {
$full_page_background.fadeIn("fast");
$full_page.attr("data-image", "#");
}
background_image = true;
} else {
if ($sidebar_img_container.length != 0) {
$sidebar.removeAttr("data-image");
$sidebar_img_container.fadeOut("fast");
}
if ($full_page_background.length != 0) {
$full_page.removeAttr("data-image", "#");
$full_page_background.fadeOut("fast");
}
background_image = false;
}
});
$(".switch-sidebar-mini input").change(function () {
$body = $("body");
$input = $(this);
if (md.misc.sidebar_mini_active == true) {
$("body").removeClass("sidebar-mini");
md.misc.sidebar_mini_active = false;
$(".sidebar .sidebar-wrapper, .main-panel").perfectScrollbar();
} else {
$(".sidebar .sidebar-wrapper, .main-panel").perfectScrollbar("destroy");
setTimeout(function () {
$("body").addClass("sidebar-mini");
md.misc.sidebar_mini_active = true;
}, 300);
}
// we simulate the window Resize so the charts will get updated in realtime.
var simulateWindowResize = setInterval(function () {
window.dispatchEvent(new Event("resize"));
}, 180);
// we stop the simulation of Window Resize after the animations are completed
setTimeout(function () {
clearInterval(simulateWindowResize);
}, 1000);
});
});
});
</script>
<script>
$(document).ready(function () {
// Javascript method's body can be found in assets/js/demos.js
md.initDashboardPageCharts();
});
</script>
<style>
.settingsTitle {
padding: 2px 20px !important;
}
</style>
</body>
</html>