개인 회원 가입 디자인 반영

This commit is contained in:
현성필
2025-12-05 16:18:14 +09:00
parent 2a9f534f1e
commit 408561a36d
2 changed files with 38 additions and 36 deletions
@@ -5,7 +5,7 @@
<body>
<section layout:fragment="title">
<div class="page-title-banner">
<img th:src="@{/img/user_register_title.png}" alt="개인회원가입" class="title-image">
<img th:src="@{/img/img_title_bg.png}" alt="개인회원가입" class="title-image">
<h1 th:text="${!isInvited ? '개인회원가입' : '법인회원가입'}">개인회원가입</h1>
</div>
</section>
@@ -1,40 +1,42 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/kjbank_base_layout}">
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/kjbank_title_layout}">
<body>
<section layout:fragment="contentFragment" class="content">
<div class="content_wrap">
<div class="sub_title2">
<h2 class="title add2">회원가입 완료</h2>
</div>
<div class="inner i_cs2">
<div class="con_title">
<p>회원 가입신청이 되었습니다.</p>
</div>
<div class="form_type top_m">
<div class="i_complete">
<img th:src="@{/img/icon/icon_complete.png}" alt="완료 아이콘">
</div>
<div class="complete_txt">
<p>
API Portal 서비스를 이용하기 위해서<br>
이메일 인증을 완료 해주세요.
</p>
</div>
<div class="btn_home btn_home2">
<a th:href="@{/}" class="common_btn_type_1"><span>홈으로</span></a>
</div>
</div>
</div>
</div>
<section layout:fragment="title">
<div class="page-title-banner">
<img th:src="@{/img/img_title_bg.png}" class="title-image">
<h1>회원가입</h1>
</div>
</section>
<th:block layout:fragment="script">
<script th:src="@{/js/jquery-3.7.1.min.js}"></script>
<script th:src="@{/js/daterangepicker.js}"></script>
<script th:src="@{/js/slick.min.js}"></script>
<script th:src="@{/js/front2.js}"></script>
<th:block layout:fragment="contentFragment">
<div class="account-recovery-page">
<div class="account-recovery-container">
<div class="account-recovery-card">
<!-- Result Content Area -->
<div class="account-recovery-result">
<div class="result-header">
<i class="fas fa-check-circle result-icon"></i>
<h2 class="result-title">회원가입 신청이 완료되었습니다.</h2>
</div>
<!-- Info Box -->
<div class="result-info-box">
<p class="info-text">
API Portal 서비스를 이용하기 위해서<br>
<strong>이메일 인증</strong>을 완료해 주세요.
</p>
</div>
</div>
<!-- Action Buttons -->
<div class="form-actions">
<a th:href="@{/}" class="submit-button">홈으로</a>
</div>
</div>
</div>
</div>
</th:block>
</body>
<th:block layout:fragment="contentScript">
</th:block>
</html>