Skip to content

Latest commit

 

History

History
44 lines (43 loc) · 1.16 KB

File metadata and controls

44 lines (43 loc) · 1.16 KB
<title>Thông tin Key</title> <style> body { background: #111; color: #00ffcc; font-family: 'Courier New', monospace; text-align: center; padding-top: 100px; } .box { background: #222; border: 2px solid #00ffcc; display: inline-block; padding: 30px 50px; border-radius: 10px; } .key { font-size: 24px; color: #ffeb3b; } </style>

Chào mừng bạn đến với hệ thống xác thực

Đang xử lý...

<script>
    const urlParams = new URLSearchParams(window.location.search);
    const key = urlParams.get('ma');
    const keyElement = document.getElementById('key');
    if (key) {
        keyElement.textContent = `Key của bạn là: ${key}`;
    } else {
        keyElement.textContent = 'Không có key nào được truyền!';
    }
</script>