35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<!doctype html>
|
||
<html xmlns:th="http://www.thymeleaf.org">
|
||
<body>
|
||
<footer th:fragment="footerFragment" class="global-footer">
|
||
<div class="container">
|
||
<div class="footer-content">
|
||
<!-- Left Section -->
|
||
<div class="footer-left">
|
||
<img src="/img/logo/logo.png" alt="광주은행" class="footer-logo">
|
||
<div class="footer-links">
|
||
<a th:href="@{/agreements/terms}" class="footer-link">이용약관</a>
|
||
<span class="footer-separator">|</span>
|
||
<a th:href="@{/agreements/terms(tab=privacy)}" class="footer-link">개인정보처리방침</a>
|
||
</div>
|
||
<p class="footer-copyright">Copyright 2025 Kwangju Bank. All Rights Reserved.</p>
|
||
</div>
|
||
|
||
<!-- Right Section -->
|
||
<div class="footer-right">
|
||
<div class="footer-related-sites">
|
||
<select class="related-sites-select">
|
||
<option>광주은행 관련 사이트</option>
|
||
<option>광주은행 홈페이지</option>
|
||
<option>광주은행 인터넷뱅킹</option>
|
||
<option>광주은행 모바일뱅킹</option>
|
||
</select>
|
||
</div>
|
||
<p class="footer-contact">고객센터 1588-3388</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
</body>
|
||
</html>
|