- monthly_worker_status 조회 시 GROUP BY로 중복 데이터 합산 - 작업보고서 삭제 권한을 그룹장 이상으로 제한 (admin, system, group_leader) - 중복 데이터 정리를 위한 마이그레이션 SQL 추가 (009_fix_duplicate_monthly_status.sql) - synology_deployment 버전에도 동일 수정 적용
54 lines
893 B
CSS
54 lines
893 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: url('/img/login-bg.jpeg') no-repeat center center fixed;
|
|
background-size: cover;
|
|
font-family: 'Malgun Gothic', sans-serif;
|
|
}
|
|
|
|
.login-container {
|
|
background: rgba(0, 0, 0, 0.65);
|
|
width: 400px;
|
|
padding: 40px;
|
|
margin: 100px auto;
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
color: white;
|
|
box-shadow: 0 0 20px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.logo {
|
|
width: 200px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
input {
|
|
display: block;
|
|
width: 100%;
|
|
margin: 15px 0;
|
|
padding: 12px;
|
|
font-size: 1rem;
|
|
border-radius: 6px;
|
|
border: none;
|
|
}
|
|
|
|
button {
|
|
padding: 12px 20px;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
border: none;
|
|
background-color: #1976d2;
|
|
color: white;
|
|
border-radius: 6px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #1565c0;
|
|
}
|
|
|
|
.error-message {
|
|
margin-top: 10px;
|
|
color: #ff6b6b;
|
|
font-weight: bold;
|
|
} |