我现在正在用Visual Studio2022 web窗体设计登录、注册功能,请用html语言分别给出登录、注册功能的代码,并且所有的输入值使用form传递到后端,界面美观一些,背景图片的代码我自己填
时间: 2024-02-19 16:57:50 浏览: 80
简单登录注册界面模板(HTML+CSS+JavaScript)【登录注册界面代码】
5星 · 资源好评率100%
好的,以下是示例代码:
登录页面的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>登录页面</title>
<style>
body {
background-image: url('your_background_image.jpg');
background-repeat: no-repeat;
background-size: cover;
}
form {
background-color: white;
padding: 20px;
border-radius: 10px;
margin: 50px auto;
width: 400px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
color: white;
font-size: 50px;
margin-top: 100px;
}
label {
display: block;
font-size: 20px;
margin-bottom: 10px;
color: #555;
}
input[type="text"],
input[type="password"] {
font-size: 20px;
padding: 10px;
border: none;
border-radius: 5px;
margin-bottom: 20px;
width: 100%;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
font-size: 20px;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
box-sizing: border-box;
}
</style>
</head>
<body>
<h1>登录</h1>
<form action="login.php" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username"><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password"><br>
<input type="submit" value="登录">
</form>
</body>
</html>
```
注册页面的HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>注册页面</title>
<style>
body {
background-image: url('your_background_image.jpg');
background-repeat: no-repeat;
background-size: cover;
}
form {
background-color: white;
padding: 20px;
border-radius: 10px;
margin: 50px auto;
width: 400px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
color: white;
font-size: 50px;
margin-top: 100px;
}
label {
display: block;
font-size: 20px;
margin-bottom: 10px;
color: #555;
}
input[type="text"],
input[type="password"] {
font-size: 20px;
padding: 10px;
border: none;
border-radius: 5px;
margin-bottom: 20px;
width: 100%;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
color: white;
font-size: 20px;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
box-sizing: border-box;
}
</style>
</head>
<body>
<h1>注册</h1>
<form action="register.php" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username"><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password"><br>
<label for="confirm_password">确认密码:</label>
<input type="password" id="confirm_password" name="confirm_password"><br>
<input type="submit" value="注册">
</form>
</body>
</html>
```
在这个示例中,我们使用了CSS样式来美化登录和注册表单。我们添加了背景图片和阴影效果,并对表单中的元素进行了调整以使其更易于阅读和使用。
需要注意的是,这些示例中仍然使用了相同的HTML代码,只是为了使其更加简洁,我们省略了一些必要的CSS代码。请根据您自己的需要进行调整。
阅读全文