33 lines
1.8 KiB
PHP
33 lines
1.8 KiB
PHP
|
|
<div class="container">
|
||
|
|
<div class="row justify-content-center align-items-center" style="padding : 4px;">
|
||
|
|
<div class="card align-middle" style="width: 55rem;">
|
||
|
|
<div class="card-body text-center">
|
||
|
|
<div class="row d-flex justify-content-center align-items-center mb-3">
|
||
|
|
<div class="col-sm-1">
|
||
|
|
<div class="d-flex p-1 mb-1 justify-content-start align-items-center">
|
||
|
|
<?=$mode?>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-sm-9">
|
||
|
|
<div class="d-flex p-1 mb-1 justify-content-center align-items-center">
|
||
|
|
<h3> <?=$title_message?> </h3>
|
||
|
|
<?php if ($mode == 'view') { ?>
|
||
|
|
<button type="button" class="btn btn-dark btn-sm me-1" onclick="location.href='write_form.php?mode=modify&num=<?=$num?>&tablename=<?=$tablename?>';"> <i class="bi bi-pencil-square"></i> 수정 </button>
|
||
|
|
<button id="copyBtn" class="btn btn-primary btn-sm me-1" type="button"> <i class="bi bi-copy"></i> 복사 </button>
|
||
|
|
<button id="deleteBtn" class="btn btn-danger btn-sm me-1" type="button"> <i class="bi bi-trash"></i> 삭제 </button>
|
||
|
|
<?php } ?>
|
||
|
|
<?php if ($mode !== 'view') { ?>
|
||
|
|
<button id="saveBtn" class="btn btn-dark btn-sm me-1" type="button"> <i class="bi bi-floppy-fill"></i>
|
||
|
|
<?php if ((int)$num > 0) print ' 저장'; else print ' 저장'; ?></button>
|
||
|
|
<?php } ?>
|
||
|
|
<button type="button" class="btn btn-outline-dark btn-sm me-2" id="showlogBtn"> H </button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-sm-2">
|
||
|
|
<button type="button" class="btn btn-outline-dark btn-sm" onclick="self.close();"> × 닫기 </button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|