forked from safing/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathredeem.html
More file actions
21 lines (21 loc) · 716 Bytes
/
Copy pathredeem.html
File metadata and controls
21 lines (21 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: null
---
<!DOCTYPE html>
<html lang="en-US">
<meta charset="utf-8">
<title>Redirecting…</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…</h1>
<a href="{{ site.account_server_redeem_url }}">Click here if you are not redirected.</a>
</html>