forked from henauyang/henauyang.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check.html
29 lines (28 loc) · 945 Bytes
/
check.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>咱们第一次聊天是几月几号?(例如1021)</title>
<p>咱们第一次聊天是几月几号?(例如1021)</p>
</head>
<script>
function check(){
// var name=document.getElementById("name").value;
var pass=document.getElementById("pass").value;
if(pass=="231127"){
alert("Welcome!");
self.location = 'time.html';
}else{
alert("我好失望!!!");
self.location = 'index.html';
}
}
</script>
<form name="f" action="">
<!-- <center>用户名:<INPUT TYPE="text" NAME="" id="name"><br></center>-->
<center>密码:<INPUT TYPE="password" NAME="" id="pass"><br></center>
<center><INPUT TYPE="button" value="登入" onclick="check()"><INPUT TYPE="reset" value="重置"></center>
</form>
<body>
</body>
</html>