Phase
Secure Access
Enter your authorization key
Contact administrator for access credentials
Need a key? Join our Discord and use !getkey
async function verifyKey(key) {
try {
const response = await fetch('/api/verify.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ key })
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return await response.json();
} catch (error) {
console.error('Verification failed:', error);
return {
valid: false,
message: 'Service unavailable. Please try again later.'
};
}
}