给我做一个银行注销的html界面,要求页面内容居中,包含css格式,给输入框与按钮添加选中的颜色,注销完成后显示注销成功请重新登录
时间: 2024-03-11 18:51:10 浏览: 68
好的,以下是一个包含 CSS 格式的银行注销的 HTML 界面,页面内容居中,输入框和按钮添加了选中的颜色,并且在注销完成后显示注销成功提示信息:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>银行账户注销</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
form {
display: flex;
flex-direction: column;
align-items: center;
background-color: #f2f2f2;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
label {
margin-bottom: 10px;
}
input[type="text"],
input[type="password"] {
border: none;
background-color: #e6e6e6;
padding: 10px;
border-radius: 5px;
margin-bottom: 10px;
width: 250px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="submit"]:focus {
outline: none;
box-shadow: 0px 0px 5px 0px rgba(0,0,255,0.5);
}
input[type="submit"] {
border: none;
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>银行账户注销</h1>
<form action="logout.php" method="post">
<label for="username">用户名:</label>
<input type="text" name="username" id="username" required><br>
<label for="password">密码:</label>
<input type="password" name="password" id="password" required><br>
<input type="submit" value="注销">
</form>
<?php
// TODO: 进行用户验证,判断是否有权进行注销操作
// 将用户的账户状态设置为已注销
// 返回提示信息给用户
echo "<script>alert('注销成功,请重新登录!');</script>";
?>
</body>
</html>
```
在这个 HTML 界面中,我们通过 CSS 样式表来设置页面的样式。具体来说,我们使用了 `display: flex` 和 `justify-content: center; align-items: center` 来使页面内容居中显示,使用了 `background-color` 和 `box-shadow` 来设置表单的背景色和阴影效果,使用了 `border-radius` 来设置圆角效果,使用了 `width` 来设置输入框的宽度,使用了 `cursor: pointer` 来使按钮在鼠标移动到上面时呈现手形光标。
我们还通过 `:focus` 伪类来为输入框和按钮添加了选中的样式。当用户点击一个输入框或按钮时,它们的边框会变成蓝色,使用户可以更加直观地感受到自己的操作。
在注销完成后,我们使用 PHP 代码来返回一个提示信息给用户,并使用 JavaScript 来弹出提示框。在实际应用中,我们需要将提示信息设置为动态生成的,以便根据不同的情况返回不同的提示信息。
阅读全文