Write a front-end landing page code

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

Guess you like

Origin blog.csdn.net/weixin_42579969/article/details/129595005