39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!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="~{/mobile/layout/detailLayout}">
|
|
<th:block layout:fragment="layout_css">
|
|
<link rel="stylesheet" href="/css/mobile/mypage_support.css">
|
|
</th:block>
|
|
<th:block layout:fragment="layout_content">
|
|
<h3>고객센터</h3>
|
|
<ul>
|
|
<li>
|
|
<a onclick="call('02-547-4711')">
|
|
<div class="img_box">
|
|
<img src="/image/mobile/support_phone.svg" alt="전화 문의"/>
|
|
</div>
|
|
<p>전화 문의</p>
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/mobilecustomerservice/insertUserInquiryIntro.do">
|
|
<div class="img_box">
|
|
<img src="/image/mobile/support_inquiry.svg" alt="문의하기"/>
|
|
</div>
|
|
<p>1:1 문의하기</p>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/mobilecustomerservice/selectListUserInquiryIntro.do">
|
|
<div class="img_box">
|
|
<img src="/image/mobile/support_history.svg" alt="문의 내역"/>
|
|
</div>
|
|
<p>문의 내역</p>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</th:block>
|
|
</html> |