페이지 삭제

This commit is contained in:
현성필
2025-11-21 17:46:06 +09:00
parent f50dfd788b
commit 6630ec49b6
@@ -1,140 +0,0 @@
<!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/kbank_apikey_layout}">
<body>
<section layout:fragment="contentFragment" class="content">
<div class="content_wrap">
<div class="sub_title3">
<h2 class="title">API키 신청</h2>
</div>
<div class="inner i_cs h_inner5">
<div class="form_type">
<div class="info1 form_top">
<p class="title w_tit">
<span class="dot">API키 이름</span>
</p>
<div class="info_line info_add">
<div class="info_box1 w_inp4">
<input type="text" name="name" style="max-width: 300px;" id="appRequestClientName" class="common_input_type_1 h_inp2" placeholder="API키 이름 입력">
</div>
</div>
</div>
<div class="infor api_dot top" style="margin-top: 10px;">
<ul>
<li>
<p>인증키가 없을 경우, 승인 시, 인증키는 신규로 발급 됩니다.</p>
</li>
</ul>
</div>
</div>
<p class="pop_text l_text m-only" style="margin-top: 10px; font-weight: 700;">API</p>
<div class="board_search sh_box top">
<p class="pop_text l_text pc-only">API</p>
<div class="search_txt ser_api w_inp2">
<input type="text" class="common_input_type_1 h_inp2" id="api_keyword" placeholder="API 검색">
</div>
<div class="btn_wrap search_btn">
<button type="button" class="btn_search" id="api_search">검색</button>
<i class="i_search"></i>
</div>
<p class="pop_text l_text pop_text2 pc-only" style="margin-left:76px;">신청 API</p>
</div>
<div class="tb_conbox top">
<div class="box table_type2 top_type">
<table class="table_col table_min tb_bdtop" id="sourceTable" cellspacing="0" cellpadding="0" width="100%">
<colgroup>
<col width="60px">
<col width="140px">
<col width="230px">
</colgroup>
<thead>
<tr>
<th>
<div class="total_wrap">
<span class="inp_check b_tit">
<input type="checkbox" class="agree_all" id="selectAllSourceTable" name="selectall" data-group="total">
<label for="selectAllSourceTable"></label>
</span>
</div>
</th>
<th>서비스</th>
<th>API</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="box pop_arrow m-only" style="text-align:center;">
<a href="#none" class="add_apis"><img th:src="@{/img/icon/Icon_arrow_btn_down.png}" alt="올리기"></a>
<a href="#none" class="remove_apis"><img th:src="@{/img/icon/Icon_arrow_btn_up.png}" alt="내리기"></a>
</div>
<div class="box pop_arrow pc-only" style="text-align:center;">
<p>
<a href="#none" class="add_apis"><img th:src="@{/img/icon/icon_arrow_btn_r.png}" alt="넣기"></a>
</p>
<p>
<a href="#none" class="remove_apis"><img th:src="@{/img/icon/icon_arrow_btn_l.png}" alt="빼기"></a>
</p>
</div>
<div class="box table_type2 top_type">
<table class="table_col table_min tb_bdtop" id="targetTable" cellspacing="0" cellpadding="0" width="100%">
<colgroup>
<col width="60px">
<col width="140px">
<col width="230px">
</colgroup>
<thead>
<tr>
<th>
<div class="total_wrap">
<span class="inp_check b_tit">
<input type="checkbox" class="agree_all" id="selectAllTargetTable" name="selectall2" data-group="total2">
<label for="selectAllTargetTable"></label>
</span>
</div>
</th>
<th>서비스</th>
<th>API</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<p class="pop_text l_text2">신청사유</p>
<div class="pop_textbox">
<textarea name="reason" rows="5" cols="30" class="common_textareaType_1" placeholder="신청사유를 입력해 주세요."></textarea>
</div>
<div class="form_type">
<div class="btn_application btn_top3">
<a th:href="@{/}" class="common_btn_type_1 gray"><span>취소</span></a>
<div class="btn_gap"></div>
<a href="#none" class="common_btn_type_1 request_apis"><span>확인</span></a>
</div>
</div>
</div>
</div>
</section>
<section layout:fragment="pagePopups" class="content pop">
<th:block th:replace="~{fragment/apikey-request :: apiKeyRequestScript}"></th:block>
</section>
</body>
<th:block layout:fragment="contentScript">
<script th:inline="javascript">
document.addEventListener('DOMContentLoaded', function () {
$('.btn_cancel').on('click', function(){
window.location.href = '/apis';
})
});
</script>
</th:block>
</html>