Files
2026-08-15 00:28:06 +07:00

164 lines
3.5 KiB
PHP

<?php
/*
* Copyright (C) 2018 Laksamadi Guko.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
session_start();
error_reporting(0);
ob_start("ob_gzhandler");
if (!isset($_SESSION["mikhmon"])) {
header("Location:../admin.php?id=login");
} else {
// load session MikroTik
$session = $_GET['session'];
// load config
include('../include/config.php');
include('../include/readcfg.php');
include('../lib/formatbytesbites.php');
$id = $_GET['id'];
$qr = $_GET['qr'];
$usermode = $_GET['usermode'];
$small = $_GET['small'];
$userp = $_GET['user'];
$logo = "../img/logo-" . $session . ".png";
if (file_exists($logo)) {
$logo = "../img/logo-" . $session . ".png";
} else {
$logo = "../img/logo.png";
}
$username = "mikhmon";
$password = "1234";
$timelimit = "6h";
$getdatalimit = "1073741824";
$comment = "test";
$validity = "1d";
$profile = "6Jam";
if ($currency == in_array($currency, $cekindo['indo'])) {
$getprice = "5000";
$price = $currency . " " . number_format((float)$getprice, 0, ",", ".");
} else {
$getprice = "10";
$price = $currency . " " . number_format((float)$getprice, 2);
}
if ($getdatalimit == 0) {
$datalimit = "";
} else {
$datalimit = formatBytes($getdatalimit, 2);
}
$urilogin = "http://$dnsname/login?username=$username&password=$password";
$qrcode = "
<canvas class='qrcode' id='qr'></canvas>
<script>
(function() {
var qr = new QRious({
element: document.getElementById('qr'),
value: '".$urilogin."',
size:'256'
});
})();
</script>
";
$num = 1;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Voucher-<?= $hotspotname . "-" . $getuprofile . "-" . $id; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="pragma" content="no-cache" />
<link rel="icon" href="../img/favicon.png" />
<script src="../js/qrious.min.js"></script>
<style>
body {
color: #000000;
background-color: #FFFFFF;
font-size: 14px;
font-family: 'Helvetica', arial, sans-serif;
margin: 0px;
-webkit-print-color-adjust: exact;
}
table.voucher {
display: inline-block;
border: 2px solid black;
margin: 2px;
}
@page
{
size: auto;
margin-left: 7mm;
margin-right: 3mm;
margin-top: 9mm;
margin-bottom: 3mm;
}
@media print
{
table { page-break-after:auto }
tr { page-break-inside:avoid; page-break-after:auto }
td { page-break-inside:avoid; page-break-after:auto }
thead { display:table-header-group }
tfoot { display:table-footer-group }
}
#num {
float:right;
display:inline-block;
}
.qrc {
width:30px;
height:30px;
margin-top:1px;
}
</style>
</head>
<body>
<?php
if ($userp != "") {
include('./template-thermal.php');
} else {
if ($small == "yes") {
include('./template-small.php');
} else {
include('./template.php');
}
}
?>
</body>
</html>