20 lines
334 B
HTML
20 lines
334 B
HTML
|
<!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.reload(true);
|
||
|
}, 500);
|
||
|
} else {
|
||
|
location.href = '/';
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
</html>
|