zrok/endpoints/publicProxy/interstitialUi/index.html

13 lines
320 B
HTML
Raw Normal View History

2024-07-23 19:39:17 +02:00
<!DOCTYPE html>
<html lang="en">
<script>
function onClick() {
document.cookie = "zrok_interstitial = true";
window.location.reload();
}
</script>
<body>
<h1>this is a zrok share!</h1>
<button onClick="onClick()">Visit Site</button>
</body>
</html>