forked from hitsme/y2b
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathee.html
More file actions
27 lines (27 loc) · 733 Bytes
/
Copy pathee.html
File metadata and controls
27 lines (27 loc) · 733 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel="stylesheet" type="text/css" href="Login.css"/>
</head>
<body>
<p id="login">
<h1 style="text-align: center">登陆</h1>
<form method="post" id="form" class="divForm">
<input type="text" required="required" placeholder="用户名" name="name"/>
<br>
<input type="password" required="required" placeholder="密码" name="password"/>
<br>
<button type="submit" onclick="sub()" class="but">登陆</button>
</form>
</p>
<script type="text/javascript">
function sub() {
alert("33")
var f=document.getElementById("form");
f.submit();
}
</script>
</body>
</html>