用html+css代码写一个登录页面

<html>
<head>
<title>登录页面</title>
</head>
<body>
<h1>登录页面</h1>
<form action="login.php" method="post">
  用户名:<input type="text" name="username" />
  密码:<input type="password" name="password" /><br />
  <input type="submit" value="登录" />
</form>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/weixin_42577243/article/details/129513770