Express+EJS+Postgres 사내 개발 포털. - Keycloak OIDC(사번 로그인), GitHub 감성 UI - 사이트 모음 + 프로젝트 공유/코멘트/스타 - DB: OpenEverest appdb portal schema (portal_app role) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
528 B
Plaintext
15 lines
528 B
Plaintext
<%- include("_header") %>
|
|
<div class="login-wrap">
|
|
<div class="box login-card">
|
|
<div class="login-logo">🧠</div>
|
|
<div class="login-title"><%= brand %></div>
|
|
<% if (typeof error !== "undefined" && error) { %>
|
|
<div class="alert"><%= error %></div>
|
|
<% } %>
|
|
<a class="btn btn-primary" style="width:100%" href="/auth/login">Keycloak 으로 로그인</a>
|
|
<p class="muted" style="margin-top:16px">사번으로 로그인합니다. (사내 SSO)</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|