53ae2fcc51
Root cause: [Authorize] attribute was blocking /dashboard access before Blazor auth state could be established, causing redirect to /not-found. Solution: - Remove [Authorize] from Dashboard.razor - Add authentication check in OnInitializedAsync - If not authenticated, redirect to login internally - Reduced wait time from 6s to 3s in login.html This allows: 1. /dashboard to load immediately 2. Blazor auth state to initialize 3. Dashboard to verify user is authenticated 4. Redirect to login if not authenticated Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
352 lines
11 KiB
HTML
352 lines
11 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>로그인 - QuantEngine</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, #0a0b16 0%, #13152e 100%);
|
|
padding: 20px;
|
|
}
|
|
|
|
.login-container {
|
|
width: 100%;
|
|
max-width: 480px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
backdrop-filter: blur(24px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 20px;
|
|
padding: 48px 32px;
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.login-header {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.login-avatar {
|
|
width: 56px;
|
|
height: 56px;
|
|
background: #3f51b5;
|
|
color: white;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
margin: 0 auto 16px;
|
|
}
|
|
|
|
.login-title {
|
|
color: white;
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
margin: 0 0 8px 0;
|
|
}
|
|
|
|
.login-subtitle {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-size: 14px;
|
|
margin: 0;
|
|
}
|
|
|
|
.login-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.form-label {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-input {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 6px;
|
|
color: #ffffff;
|
|
padding: 12px 14px;
|
|
font-size: 14px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.form-input::placeholder {
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
.form-input:focus {
|
|
outline: none;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
border-color: rgba(63, 81, 181, 0.8);
|
|
box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.2);
|
|
}
|
|
|
|
.form-checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.checkbox-input {
|
|
width: 18px;
|
|
height: 18px;
|
|
cursor: pointer;
|
|
accent-color: #3f51b5;
|
|
}
|
|
|
|
.checkbox-label {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.alert {
|
|
padding: 12px 14px;
|
|
border-radius: 6px;
|
|
font-size: 13px;
|
|
display: none;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.alert.show {
|
|
display: block;
|
|
}
|
|
|
|
.alert-error {
|
|
background-color: rgba(244, 67, 54, 0.15);
|
|
border: 1px solid rgba(244, 67, 54, 0.3);
|
|
color: #ff7675;
|
|
}
|
|
|
|
.alert-success {
|
|
background-color: rgba(76, 175, 80, 0.15);
|
|
border: 1px solid rgba(76, 175, 80, 0.3);
|
|
color: #81c784;
|
|
}
|
|
|
|
.btn {
|
|
padding: 12px 16px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #3f51b5;
|
|
color: white;
|
|
width: 100%;
|
|
}
|
|
|
|
.btn-primary:hover:not(:disabled) {
|
|
background-color: #5566cc;
|
|
box-shadow: 0 8px 24px rgba(63, 81, 181, 0.4);
|
|
}
|
|
|
|
.btn-primary:disabled {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.login-footer {
|
|
text-align: center;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-size: 12px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
padding-top: 16px;
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.login-footer p {
|
|
margin: 0;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.login-container {
|
|
padding: 32px 20px;
|
|
}
|
|
|
|
.login-title {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-header">
|
|
<div class="login-avatar">Q</div>
|
|
<h1 class="login-title">QuantEngine</h1>
|
|
<p class="login-subtitle">은퇴자산포트폴리오 우자 관리 시스템</p>
|
|
</div>
|
|
|
|
<div id="alert" class="alert"></div>
|
|
|
|
<form class="login-form" id="loginForm">
|
|
<div class="form-group">
|
|
<label for="username" class="form-label">관리자 아이디</label>
|
|
<input
|
|
type="text"
|
|
id="username"
|
|
name="username"
|
|
class="form-input"
|
|
placeholder="아이디를 입력하세요"
|
|
required />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password" class="form-label">비밀번호</label>
|
|
<input
|
|
type="password"
|
|
id="password"
|
|
name="password"
|
|
class="form-input"
|
|
placeholder="비밀번호를 입력하세요"
|
|
required />
|
|
</div>
|
|
|
|
<div class="form-checkbox">
|
|
<input
|
|
type="checkbox"
|
|
id="rememberUsername"
|
|
name="rememberUsername"
|
|
class="checkbox-input" />
|
|
<label for="rememberUsername" class="checkbox-label">
|
|
다음에 아이디 자동 입력
|
|
</label>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary" id="loginBtn">
|
|
로그인
|
|
</button>
|
|
</form>
|
|
|
|
<div class="login-footer">
|
|
<p>© 2026 QuantEngine. 모든 권리 예약.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
// 페이지 로드 시 저장된 아이디 복원
|
|
window.addEventListener('DOMContentLoaded', function() {
|
|
const savedUsername = localStorage.getItem('quant_admin_username');
|
|
if (savedUsername) {
|
|
document.getElementById('username').value = savedUsername;
|
|
document.getElementById('rememberUsername').checked = true;
|
|
}
|
|
});
|
|
|
|
// 로그인 폼 제출
|
|
document.getElementById('loginForm').addEventListener('submit', async function(e) {
|
|
e.preventDefault();
|
|
|
|
const username = document.getElementById('username').value;
|
|
const password = document.getElementById('password').value;
|
|
const rememberUsername = document.getElementById('rememberUsername').checked;
|
|
const alertDiv = document.getElementById('alert');
|
|
const loginBtn = document.getElementById('loginBtn');
|
|
|
|
// 비활성화
|
|
loginBtn.disabled = true;
|
|
alertDiv.className = 'alert';
|
|
|
|
try {
|
|
console.log('[Login] Sending request to /api/auth/login');
|
|
const response = await fetch('/api/auth/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
username: username,
|
|
password: password
|
|
})
|
|
});
|
|
|
|
console.log('[Login] Response status:', response.status, response.ok);
|
|
|
|
if (response.ok) {
|
|
const data = await response.json();
|
|
|
|
// 토큰 저장 (Blazor 인증 상태에 필요)
|
|
if (data.accessToken) {
|
|
localStorage.setItem('quant_admin_access_token', data.accessToken);
|
|
console.log('[Login] Access token saved to localStorage');
|
|
}
|
|
|
|
// 사용자 정보 저장
|
|
if (data.username) {
|
|
localStorage.setItem('quant_admin_username', data.username);
|
|
}
|
|
|
|
if (data.role) {
|
|
localStorage.setItem('quant_admin_role', data.role);
|
|
}
|
|
|
|
// 아이디 자동입력 설정 저장
|
|
if (rememberUsername) {
|
|
localStorage.setItem('quant_admin_remember_username', 'true');
|
|
} else {
|
|
localStorage.removeItem('quant_admin_username');
|
|
localStorage.setItem('quant_admin_remember_username', 'false');
|
|
}
|
|
|
|
// 로그인 성공 메시지 표시
|
|
alertDiv.className = 'alert alert-success show';
|
|
alertDiv.textContent = '로그인 성공! 대시보드로 이동합니다.';
|
|
|
|
// Blazor 앱이 로드될 시간 제공
|
|
// (대시보드는 이제 [Authorize] 없이 로드되고, 내부에서 인증 체크)
|
|
console.log('[Login] Token saved. Redirecting in 3 seconds...');
|
|
setTimeout(() => {
|
|
console.log('[Login] Navigating to dashboard');
|
|
window.location.href = '/dashboard';
|
|
}, 3000);
|
|
} else {
|
|
const data = await response.json();
|
|
alertDiv.className = 'alert alert-error show';
|
|
alertDiv.textContent = '로그인 실패: 아이디 또는 비밀번호가 올바르지 않습니다.';
|
|
loginBtn.disabled = false;
|
|
}
|
|
} catch (error) {
|
|
console.error('Error:', error);
|
|
alertDiv.className = 'alert alert-error show';
|
|
alertDiv.textContent = '오류 발생: ' + error.message;
|
|
loginBtn.disabled = false;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|