-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivate.html
38 lines (33 loc) · 1.16 KB
/
private.html
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
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<SCRIPT language=JavaScript>
function password() {
var testV = 1;
var pass1 = prompt('请输入密码:', '');
while (testV < 3) {
if (!pass1)
history.go(-1);
if (pass1 == "sYs") {
alert('密码正确!');
break;
}
testV += -1;
var pass1 = prompt('密码错误!请重新输入:');
}
if (pass1 != "password" & testV == 3)
history.go(-1);
return " ";
}
document.write(password());
</SCRIPT>
<title>Useful Websites</title>
</head>
<body>
<p> <a href="账户.htm" target="_blank"><font color="#e33222">应用及账户</font></a> </p>
<p> <a href="https://onedrive.live.com/edit.aspx?resid=B84F28E5C201A253!891&cid=b84f28e5c201a253&CT=1665984625309&OR=ItemsView" target="_blank"><font color="#e33222">我的笔记</font></a> </p>
<font size=-1>last update: 2021-3-19 </font>
</body>
</html>