写一个html登陆页面
时间: 2023-09-21 21:03:30 浏览: 68
Landing-Page
以下是一个简单的 HTML 登录页面示例:
```
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
</head>
<body>
<h1>Login</h1>
<form method="POST" action="login.php">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br>
<button type="submit">Login</button>
</form>
</body>
</html>
```
请注意,上述示例仅包含 HTML 代码,它将表单数据提交到一个名为 "login.php" 的服务器端脚本。您需要编写该脚本以验证用户凭据并执行任何必要的操作。
阅读全文