firefish/src/client/assets/version.html
2018-05-21 21:41:06 +09:00

19 lines
294 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.href = '/';
}, 500);
</script>
</head>
</html>