feat: inform users about empty link

This commit is contained in:
Aliberk Sandıkçı 2023-06-25 19:07:40 +03:00
parent 57e515b7fe
commit 8517e9fa05

View file

@ -7,17 +7,21 @@
<body> <body>
<noscript>PLEASE ENABLE JAVASCRIPT</noscript> <noscript>PLEASE ENABLE JAVASCRIPT</noscript>
<p>You will be automatically directed to the <span id="info">ERROR - PLEASE ENABLE JAVASCRIPT OR CONTACT WITH ADMIN</span></p> <div id="info1">You will be automatically directed to the <span id="info2">ERROR - PLEASE ENABLE JAVASCRIPT OR CONTACT
WITH ADMIN</span></div>
<script> <script>
var a = location.href; var a = location.href;
if (a.indexOf("?") == -1) {
document.getElementById("info1").innerHTML = "<h3>You did not enter any url!</h3><br>Please type a proper link like <b>https://l.asandikci.com/?redirect-link</b>"
}
else {
var b = a.substring(a.indexOf("?") + 1); var b = a.substring(a.indexOf("?") + 1);
var c = "https://l.aliberksandikci.com.tr/" + b; var c = "https://l.aliberksandikci.com.tr/" + b;
var d = "<a href='" + c + "'> l.aliberksandikci.com.tr/" + b; var d = "<a href='" + c + "'> l.aliberksandikci.com.tr/" + b;
document.getElementById("info").innerHTML = d; document.getElementById("info2").innerHTML = d;
// window.location.replace(c);
window.location.replace(c); }
</script> </script>
</body> </body>