添加3个普通用户,注释管理员选项,优化登录

This commit is contained in:
2025-06-11 21:48:26 +08:00
parent f2c385d936
commit d4846869eb
4 changed files with 81 additions and 12 deletions
+34
View File
@@ -112,6 +112,40 @@
box-shadow: 0 0 0 2px rgba(44, 173, 125, 0.2);
}
/* 密码输入框容器样式 */
.password-input-container {
position: relative;
display: flex;
align-items: center;
}
.password-input {
padding-right: 3rem; /* 为眼睛图标留出空间 */
}
.password-toggle-btn {
position: absolute;
right: 0.75rem;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
padding: 0.25rem;
color: #666;
font-size: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: color 0.2s, background-color 0.2s;
}
.password-toggle-btn:hover {
color: #2cad7d;
}
.login-button {
margin-top: 1rem;
padding: 0.75rem 1.5rem;