-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (26 loc) · 942 Bytes
/
blog.html
File metadata and controls
27 lines (26 loc) · 942 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">
<link rel="stylesheet" type="text/css" href="blog.css">
<title>my blog login</title>
</head>
<body>
<div class="all-page">
<div class="max-box">
<div class="title-box"><h1>欢 迎 访 问</h1></div>
<form class="content-box" action="" method="post">
<div class="input-box">
<input id="username" type="text" name="user" placeholder=" 请输入账号" required>
<input id="password" type="password" name="pwd" placeholder=" 请输入密码(6-16个字符)" required>
</div>
<div class="use-box">
<input type="button" id="register" name="register" value="注 册">
<input type="button" id="login" name="login" value="登 录">
</div>
</form>
</div>
</div>
<script type="text/javascript" src="blog.js"></script>
</body>
</html>