AvocadoAmber/AvocadoEdition_Light/skin/member/basic/scrap_popin.skin.php

43 lines
1.3 KiB
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:45:33 +09:00
if (!defined('_GNUBOARD_'))
exit; // 개별 페이지 접근 불가
2022-09-17 20:50:50 +09:00
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
2024-09-23 11:45:33 +09:00
add_stylesheet('<link rel="stylesheet" href="' . $member_skin_url . '/style.css">', 0);
2022-09-17 20:50:50 +09:00
?>
<!-- 스크랩 시작 { -->
<div id="scrap_do" class="new_win mbskin">
2024-09-23 11:45:33 +09:00
<h1 id="win_title">스크랩하기</h1>
2022-09-17 20:50:50 +09:00
2024-09-23 11:45:33 +09:00
<form name="f_scrap_popin" action="./scrap_popin_update.php" method="post">
2022-09-17 20:50:50 +09:00
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="wr_id" value="<?php echo $wr_id ?>">
<div class="tbl_frm01 tbl_wrap">
2024-09-23 11:45:33 +09:00
<table>
2022-09-17 20:50:50 +09:00
<caption>제목 확인 댓글 쓰기</caption>
<tbody>
2024-09-23 11:45:33 +09:00
<tr>
2022-09-17 20:50:50 +09:00
<th scope="row">제목</th>
<td><?php echo get_text(cut_str($write['wr_subject'], 255)) ?></td>
2024-09-23 11:45:33 +09:00
</tr>
<tr>
2022-09-17 20:50:50 +09:00
<th scope="row"><label for="wr_content">댓글</label></th>
<td><textarea name="wr_content" id="wr_content"></textarea></td>
2024-09-23 11:45:33 +09:00
</tr>
2022-09-17 20:50:50 +09:00
</tbody>
2024-09-23 11:45:33 +09:00
</table>
2022-09-17 20:50:50 +09:00
</div>
<p class="win_desc">
2024-09-23 11:45:33 +09:00
스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 있습니다.
2022-09-17 20:50:50 +09:00
</p>
<div class="win_btn">
2024-09-23 11:45:33 +09:00
<input type="submit" value="스크랩 확인" class="btn_submit">
2022-09-17 20:50:50 +09:00
</div>
2024-09-23 11:45:33 +09:00
</form>
2022-09-17 20:50:50 +09:00
</div>
2024-09-23 11:45:33 +09:00
<!-- } 스크랩 -->