Files
server-side-login-demo/views/error.ejs
2026-05-06 14:35:49 +09:00

27 lines
1.1 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>Server-Side Demo Error</title>
<style>
body { font-family: sans-serif; padding: 2rem; background-color: #f0f2f5; }
.container { max-width: 800px; margin: 0 auto; background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.error-box { background: #fff1f0; border: 1px solid #ffa39e; padding: 1rem; border-radius: 4px; color: #cf1322; }
pre { background: #f8f9fa; padding: 1rem; border-radius: 4px; overflow-x: auto; margin-top: 1rem; }
.btn { display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 4px; margin-top: 1rem; }
</style>
</head>
<body>
<div class="container">
<h1>인증 오류</h1>
<div class="error-box">
<p><strong>Message:</strong> <%= message %></p>
<p><strong>Detail:</strong> <%= detail %></p>
</div>
<p>자세한 내용은 서버 로그를 확인하세요.</p>
<a href="/" class="btn">홈으로 이동</a>
</div>
</body>
</html>