Files
qiweimanager-master/frontend/clear_storage.html

16 lines
358 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>清除本地存储</title>
</head>
<body>
<h1>正在清除本地存储...</h1>
<script>
localStorage.clear();
document.body.innerHTML = '<h1>本地存储已清除!请刷新主页面</h1>';
setTimeout(() => {
window.close();
}, 2000);
</script>
</body>
</html>