feat: OIDC 로그인 연동 및 DB 스키마 업데이트

This commit is contained in:
2026-02-02 09:50:25 +09:00
parent 21b6332c9c
commit a976b8a0c6
30 changed files with 2029 additions and 5 deletions

View File

@@ -79,6 +79,31 @@
<i class="arrow-r" aria-hidden="true"></i>
</a>
</div>
<style>
.btn-oidc {
background-color: #000; /* IDP 브랜드 컬러에 맞춰 조정 가능 */
color: #fff;
border: none;
width: 100%;
padding: 12px;
border-radius: 4px;
margin-top: 10px;
cursor: pointer;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.btn-oidc:hover {
opacity: 0.8;
}
</style>
<div class="btn-wrap">
<button type="button" class="btn-oidc" id="btn_oidc_login">
OIDC 통합 로그인
</button>
</div>
</div>
</form>
</div>