forked from soxfox42/typit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
import.php
73 lines (48 loc) · 2.83 KB
/
import.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="cache-control" content="max-age=86400">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="description" content="Errate ein Wort in 6 Versuchen. Jeden Tag ein neues Rätsel. Mit Umlauten (äöü) und kostenlos.">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css?cacheid=2023-08-08">
<link rel="stylesheet" href="" id="colorblind-style">
<link rel="manifest" href="/manifest.json">
<meta property="og:url" content="https://wordle.ruinelli.ch">
<meta property="og:type" content="Wordle auf Deutsch mit Umlauten (äöü)">
<meta property="og:title" content="Wordle auf Deutsch mit Umlauten (äöü)">
<!-- <meta property="og:description" content="Errate ein Wort in 6 Versuchen. Jeden Tag ein neues Rätsel. Mit Umlauten (äöü) und kostenlos."> -->
<meta property="og:description" content="Errate ein deutsches Wort in 6 Versuchen">
<meta property="og:image" content="https://wordle.ruinelli.ch/logo_small.png">
<html prefix="og: https://ogp.me/ns#">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="wordle.ruinelli.ch">
<link rel="manifest" href="manifest.json" />
<link href="logo-tiny.png" rel="icon shortcut" />
<link href="logo.png" rel="apple-touch-icon" />
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css">
<meta name="google-site-verification" content="Dcbf7f83KTs3jWQDAnYApXdS-WoUvXiRBvX1yy5IrSM" />
<meta name="google-site-verification" content="do6EF9xdaKqcNocyxmRtWJHNpj3Ht1tFuOOEktJGu4Q" />
<title>WORDLE auf Deutsch mit Umlauten (äöü)</title>
</head>
<body style="margin: 10px">
<header style="display: block">
<h1><b><span style="font-size: 120%; color: #6abe00;">W</span>OR<span style="color: #fbce31;">DL</span>E</b> auf Deutsch mit Umlauten (äöü)</h1>
</header>
<p><strong>Super, deine Einstellungen und Statistik wurden transferiert.<br>
Bitte spiele von nun an nur noch hier auf <a href=https://wordle.ruinelli.ch target=_self>wordle.ruinelli.ch</a>!</strong></p>
</body>
</html>
<script type="text/javascript">
var data = "<?php echo($_GET["lc"]) ?>";
data = atob(data);
console.log("Importing local storage from URL...")
console.log(data)
var data = JSON.parse(JSON.parse(data));
// Write to local storage
Object.keys(data).forEach(function (k) {
localStorage.setItem(k, data[k]);
});
</script>