Add support for optional human challenge

This commit is contained in:
Andrey Antukh 2024-09-05 15:28:24 +02:00
parent edeb16bc26
commit d88f28f5c2
5 changed files with 61 additions and 2 deletions

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Penpot - Challenge</title>
<link rel="icon" href="images/favicon.png" />
<script>
var params = new URL(document.location.toString()).searchParams;
var redirectPath = params.get("redirect");
setTimeout(() => {
location.href = "/#" + redirectPath;
}, 100);
</script>
</head>
<body>
</body>
</html>