用户登录页面可转跳子页面代码
时间: 2023-12-08 16:15:38 浏览: 23
以下是一个用户登录页面的 HTML 源代码,其中包含一个可转跳子页面的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: #f2f2f2;
}
form {
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 5px;
padding: 20px;
margin: 50px auto;
max-width: 400px;
box-shadow: 0px 0px 10px #cccccc;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin: 5px 0px;
border: 1px solid #cccccc;
border-radius: 5px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: #ffffff;
border: none;
border-radius: 5px;
padding: 10px;
margin-top: 10px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<form action="subpage.html">
<h2>Login</h2>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Login">
</form>
</body>
</html>
```
在这个例子中,我们将表单的 `action` 属性设置为 `subpage.html`,这意味着当用户提交表单时,浏览器将转到 `subpage.html` 页面。
请注意,这只是一个示例,你需要将 `subpage.html` 更改为你想要转到的实际页面的名称或 URL。
阅读全文