🔗 Generate Safelink
function generateSafelink() {
const baseUrl = "https://www.kukuhsuprayogi.com/p/safelink-2.html"; // Ganti dengan URL halaman safelink Anda
const inputUrl = document.getElementById("inputUrl").value;
if (!inputUrl) {
alert("Harap masukkan URL!");
return;
}
const encodedUrl = encodeURIComponent(inputUrl);
const safelink = `${baseUrl}?to=${encodedUrl}`;
document.getElementById("result").innerHTML = `
Safelink Anda:
`;
}
function copyLink() {
const copyText = document.querySelector(".result-input");
copyText.select();
document.execCommand("copy");
alert("Link disalin!");
}