- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
// modal/bulkModal.php
|
|
|
|
// CSS, JS 파일 링크
|
|
echo '<link rel="stylesheet" href="/modal/modal.css">';
|
|
echo '<script src="/modal/modal.js"></script>';
|
|
|
|
// 모달 컨테이너만 출력
|
|
?>
|
|
<div id="bulkEntryModal" class="bulk-modal" style="display:none">
|
|
<div class="bulk-modal-content">
|
|
<div class="bulk-modal-header">
|
|
<h3>대량 등록</h3>
|
|
<button type="button" class="bulk-close-btn">×</button>
|
|
</div>
|
|
<div class="bulk-modal-body">
|
|
<table id="bulkEntryTable" class="table">
|
|
<thead>
|
|
<tr id="bulk-thead"></tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</div>
|
|
<div class="bulk-modal-footer">
|
|
<div class="d-flex justify-content-end">
|
|
<button type="button" id="saveBulkBtn" class="btn btn-dark btn-sm me-2">
|
|
<i class="bi bi-floppy-fill"></i> 전체 저장
|
|
</button>
|
|
<button type="button" class="btn btn-outline-dark btn-sm me-2 bulk-close-btn" >
|
|
× 닫기
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|