0) {
echo '';
require_once("../../vendor/qrcode.php");
$qr = QRCode::getMinimumQRCode($pwhash, QR_ERROR_CORRECT_LEVEL_Q);
// The size of each block (in pixels) should be an integer
$qr->printSVG(10);
echo "
";
echo 'Raw API Token: ' . $pwhash . "";
} else {
echo "No password set
";
}
} else {
echo "Not authorized!
";
}
?>