以下是一个使用JSP实现的简单登录页面实例,包括HTML和JSP代码。这个实例展示了如何创建一个具有基本样式和功能的登录表单。
```html

body {
font-family: Arial, sans-serif;
background-color: f2f2f2;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-container {
background-color: fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}
.login-container h2 {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input[type="







