使用html5开发一个app使用的重设密码页面
时间: 2024-05-06 17:18:42 浏览: 176
html5手机密码设置页面模板
好的,请参考以下HTML5代码,它包含一个简单的重设密码表单页面:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>重设密码</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
form {
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 10px #ccc;
margin: 50px auto;
max-width: 400px;
padding: 20px;
}
h2 {
text-align: center;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"], input[type="password"] {
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
font-size: 16px;
margin-bottom: 10px;
padding: 10px;
width: 100%;
}
input[type="submit"] {
background-color: #4CAF50;
border: none;
border-radius: 3px;
box-shadow: 0px 0px 5px #ccc;
color: #fff;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
padding: 10px;
width: 100%;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<form>
<h2>重设密码</h2>
<label for="email">邮箱地址</label>
<input type="text" id="email" name="email" required>
<label for="password">新密码</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">确认密码</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<input type="submit" value="重设密码">
</form>
</body>
</html>
```
在这个表单中,包含了三个必填字段:邮箱地址、新密码和确认密码。当用户点击“重设密码”按钮时,表单将提交到服务器进行处理。
你可以在这个基础上进行修改和扩展,以满足你的具体需求。
阅读全文