blob: 177d37db8f18d1615a254cc6ac9b09328bc1e6db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Misskeyのリカバリ</title>
<script>
const v = window.prompt('Enter version:');
if (v) {
localStorage.setItem('v', v);
}
setTimeout(() => {
location.href = '/';
}, 500);
</script>
</head>
</html>
|