mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
18 lines
416 B
Text
18 lines
416 B
Text
<!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>
|