- _project_detail.ejs: 모달/단독 공용 상세(헤더·반응·바로가기·댓글 스레드·입력) - dashboard: 상세 모달 오버레이 + 프로젝트별 template 저장소 + 새 프로젝트 등록 모달 - project.ejs(단독)·login.ejs 새 디자인으로 재작성 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
15 lines
592 B
Plaintext
15 lines
592 B
Plaintext
<%- include("_header") %>
|
|
<div class="login-wrap">
|
|
<div class="login-card">
|
|
<img class="login-logo" src="/public/logo.svg" width="56" height="56" alt="" />
|
|
<div class="login-title"><%= brand %></div>
|
|
<% if (typeof error !== "undefined" && error) { %>
|
|
<div class="alert"><%= error %></div>
|
|
<% } %>
|
|
<a class="btn btn-primary" style="width:100%;justify-content:center" href="/auth/login">Keycloak 으로 로그인</a>
|
|
<p class="muted" style="margin-top:16px">사번으로 로그인합니다. (사내 SSO)</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|