简单的网上书城用户注册页面,包括在盒子里面的用户名,密码,确认密码,电子邮件,注册按钮盒子与上面的盒子等宽,背景为绿色,头部盒子居中填写文字
时间: 2023-09-23 15:11:07 浏览: 91
以下是一个简单的网上书城用户注册页面的HTML代码示例:
```html
<!DOCTYPE html>
<html>
<head>
<title>用户注册</title>
<style type="text/css">
body {
background-color: #8bc34a;
}
.container {
margin: 0 auto;
width: 400px;
padding: 20px;
background-color: #fff;
text-align: center;
}
input[type="text"], input[type="password"], input[type="email"] {
display: block;
margin: 10px auto;
padding: 10px;
width: 100%;
border: none;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
}
input[type="submit"] {
display: block;
margin: 20px auto;
padding: 10px;
width: 100%;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h2>用户注册</h2>
<form>
<input type="text" name="username" placeholder="用户名" required>
<input type="password" name="password" placeholder="密码" required>
<input type="password" name="confirm_password" placeholder="确认密码" required>
<input type="email" name="email" placeholder="电子邮件" required>
<input type="submit" value="注册">
</form>
</div>
</body>
</html>
```
该页面使用了HTML5的form元素和input元素来创建用户注册表单。其中,input元素的type属性分别为text、password和email,分别对应输入文本、密码和电子邮件的输入框。input元素的required属性表示该输入框必填。input元素的name属性用于指定该输入框对应的表单数据的名称。input元素的value属性用于指定按钮文本。
CSS样式用于设置页面的背景颜色、容器的宽度和居中、输入框的样式、按钮的样式等。其中,输入框和按钮的样式都使用了盒模型布局和圆角边框样式。
阅读全文