Testpanel klasörüne güncel dosyalar eklendi

This commit is contained in:
2026-04-20 22:28:31 +03:00
commit eb7e1a2b0f
107 changed files with 16317 additions and 0 deletions

24
testpanel/api/qr.php Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>QR Code Styling</title>
<style>
body {
margin: 0;
padding: 0;
}
#qrcode-img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: fill;
}
</style>
</head>
<body>
<img id="qrcode-img" src="https://image-charts.com/chart?chs=100x100&cht=qr&chl=https://test.com">
</body>
</html>