Merge pull request #1061 from XhmikosR/devel

Wrap API token in `code`
This commit is contained in:
Adam Warner
2019-12-08 14:18:31 +00:00
committed by GitHub
+1 -3
View File
@@ -11,9 +11,7 @@ if($auth)
require_once("../../vendor/qrcode.php");
$qr = QRCode::getMinimumQRCode($pwhash, QR_ERROR_CORRECT_LEVEL_Q);
$qr->printHTML("10px");
print("Raw API Token: ");
print($pwhash);
echo "<br>Raw API Token: <code>" . $pwhash . "</code>";
}
else
{