e1af7285a1
- 모든 페이지 'DBX Corp' → 'DBX Corporation' 통일 - 브랜드 패널 좌측에 천천히 움직이는 도형 5개 추가 (CSS 애니메이션) - 전체 기본 폰트 15px → 16px, 제목/카드 크기 확대 - 'Google Workspace 계정...' 문장 한 줄 표시 처리
90 lines
3.4 KiB
HTML
90 lines
3.4 KiB
HTML
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>접속 불가 — DBX 업무 포털</title>
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
</head>
|
|
<body>
|
|
<div class="auth-layout">
|
|
|
|
<!-- 좌측: 브랜드 패널 -->
|
|
<aside class="brand-panel">
|
|
<!-- 움직이는 배경 도형 -->
|
|
<div class="brand-shapes" aria-hidden="true">
|
|
<div class="shape shape-1"></div>
|
|
<div class="shape shape-2"></div>
|
|
<div class="shape shape-3"></div>
|
|
<div class="shape shape-4"></div>
|
|
<div class="shape shape-5"></div>
|
|
</div>
|
|
|
|
<div class="brand-logo">
|
|
<div class="brand-logo-mark">
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="none"
|
|
stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<rect x="3" y="3" width="7" height="7" rx="1"/>
|
|
<rect x="14" y="3" width="7" height="7" rx="1"/>
|
|
<rect x="3" y="14" width="7" height="7" rx="1"/>
|
|
<rect x="14" y="14" width="7" height="7" rx="1"/>
|
|
</svg>
|
|
</div>
|
|
<span class="brand-name">DBX Corporation</span>
|
|
</div>
|
|
|
|
<div class="brand-body">
|
|
<p class="brand-tag">Internal Portal</p>
|
|
<h1 class="brand-headline">업무 포털<br>시스템</h1>
|
|
<p class="brand-desc">DBX Corporation 임직원 전용 업무 통합 포털입니다.</p>
|
|
<div class="brand-divider"></div>
|
|
</div>
|
|
|
|
<p class="brand-footer">© 2026 DBX Corporation. All rights reserved.</p>
|
|
</aside>
|
|
|
|
<!-- 우측: 오류 패널 -->
|
|
<main class="form-panel">
|
|
<div class="form-box">
|
|
<div class="form-error-badge">
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none"
|
|
stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<circle cx="12" cy="12" r="10"/>
|
|
<line x1="12" y1="8" x2="12" y2="12"/>
|
|
<line x1="12" y1="16" x2="12.01" y2="16"/>
|
|
</svg>
|
|
접속 불가
|
|
</div>
|
|
|
|
<h2 class="form-title">접속할 수 없습니다</h2>
|
|
<p class="form-subtitle" style="margin-bottom: 32px;">
|
|
{{ reason }}
|
|
</p>
|
|
|
|
<a class="btn-primary" href="/login">
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none"
|
|
stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"/>
|
|
<polyline points="10 17 15 12 10 7"/>
|
|
<line x1="15" y1="12" x2="3" y2="12"/>
|
|
</svg>
|
|
다른 Google 계정으로 로그인
|
|
</a>
|
|
|
|
<div class="form-note" style="margin-top: 20px;">
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none"
|
|
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<rect x="3" y="11" width="18" height="11" rx="2" ry="2"/>
|
|
<path d="M7 11V7a5 5 0 0 1 10 0v4"/>
|
|
</svg>
|
|
<span>
|
|
접속 권한이 필요하시면 시스템 관리자에게 문의하세요.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|