1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-03 18:49:09 +00:00
safing-web/redeem.html
2022-07-21 13:45:28 +02:00

21 lines
716 B
HTML

---
layout: null
---
<!DOCTYPE html>
<html lang="en-US">
<meta charset="utf-8">
<title>Redirecting&hellip;</title>
<link rel="canonical" href="{{ site.account_server_redeem_url }}">
<script>
let params = new URLSearchParams(document.location.search);
if (params.has("code")) {
location="{{ site.account_server_redeem_url }}?code=" + params.get("code");
} else {
location="{{ site.account_server_redeem_url }}";
}
</script>
<meta http-equiv="refresh" content="0; url={{ site.account_server_redeem_url }}">
<meta name="robots" content="noindex">
<h1>Redirecting&hellip;</h1>
<a href="{{ site.account_server_redeem_url }}">Click here if you are not redirected.</a>
</html>