사용자: 스크랩하기스킨 스타일

This commit is contained in:
whitedot
2013-01-31 10:50:18 +09:00
parent bcf5da9716
commit e5d74d23cc
2 changed files with 28 additions and 19 deletions

View File

@ -233,6 +233,12 @@ fieldset button {padding:0 15px;height:24px;border:0;background:#494949;color:#f
#memo_write textarea {height:100px} #memo_write textarea {height:100px}
/* 스크랩 */
#scrap_do .cbg {margin:0 auto 20px;padding:20px;width:87%}
#scrap_do table {margin:0 0 10px;width:100%}
#scrap_do textarea {height:100px}
/* 회원 패스워드 확인 */ /* 회원 패스워드 확인 */
#mb_confirm {margin:100px auto;width:500px} #mb_confirm {margin:100px auto;width:500px}
#mb_confirm h1 {margin:0 0 20px;font-size:1.3em} #mb_confirm h1 {margin:0 0 20px;font-size:1.3em}

View File

@ -5,27 +5,30 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<div id="scrap_do" class="new_win"> <div id="scrap_do" class="new_win">
<h1>스크랩하기</h1> <h1>스크랩하기</h1>
<form name="f_scrap_popin" method="post" action="./scrap_popin_update.php"> <div class="cbg">
<input type="hidden" name="bo_table" value="<?=$bo_table?>">
<input type="hidden" name="wr_id" value="<?=$wr_id?>">
<table class="frm_tbl"> <form name="f_scrap_popin" method="post" action="./scrap_popin_update.php">
<caption>스크랩 확인 및 댓글 달기</caption> <input type="hidden" name="bo_table" value="<?=$bo_table?>">
<tbody> <input type="hidden" name="wr_id" value="<?=$wr_id?>">
<tr>
<th scope="row">제목</th>
<td><?=get_text(cut_str($write['wr_subject'], 255))?></td>
</tr>
<tr>
<th scope="row"><label for="wr_content">댓글</label></th>
<td><textarea id="wr_content" name="wr_content"></textarea></td>
</tr>
</tbody>
</table>
<p> <table class="frm_tbl">
스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다. <caption>제목 확인 및 댓글 쓰기</caption>
</p> <tbody>
<tr>
<th scope="row">제목</th>
<td><?=get_text(cut_str($write['wr_subject'], 255))?></td>
</tr>
<tr>
<th scope="row"><label for="wr_content">댓글</label></th>
<td><textarea id="wr_content" name="wr_content"></textarea></td>
</tr>
</tbody>
</table>
<p>
스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다.
</p>
</div>
<div class="btn_win"> <div class="btn_win">
<input type="submit" class="btn_submit" value="스크랩"> <input type="submit" class="btn_submit" value="스크랩">