사용자: #111 마크업 완료

This commit is contained in:
whitedot
2013-01-21 12:02:20 +09:00
parent c5cff89c4f
commit 9c0bcf751e
2 changed files with 28 additions and 15 deletions

View File

@ -165,6 +165,7 @@ a {color:#000;text-decoration:none}
#poll_result_cmt fieldset {margin-bottom:0;text-align:left}
#poll_result_cmt fieldset p {margin:0 0 15px;padding:3px 0 0px;text-align:left}
#poll_result_cmt footer {text-align:right}
#poll_result_wcmt {margin-bottom:10px;width:93%}
.poll_cmt_del a {display:inline-block;padding-bottom:10px}
#poll_result_oth {margin:0 auto 20px}
#poll_result_oth h2 {padding:0 0 10px}

View File

@ -53,21 +53,33 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<input type=hidden name="po_id" value="<?=$po_id?>">
<input type=hidden name="w" value="">
<input type=hidden name="skin_dir" value="<?=$skin_dir?>">
<fieldset>
<legend>의견남기기</legend>
<p><?=$po_etc?></p>
<?
$comment_size = "";
if ($is_member) { $comment_size = 50; ?>
<input type="hidden" name="pc_name" value="<?=cut_str($member['mb_nick'],255)?>">
<? } else { $comment_size = 32; ?>
<label for="pc_name">이름</label>
<input type='text' id="pc_name" name="pc_name" class="fieldset_input required" size="10" required>
<? } ?>
<input type="text" id="pc_idea" name="pc_idea" class="fieldset_input required" size="<?=$comment_size?>" required maxlength="100" title="의견">
<input type="submit" class="fieldset_submit" value="의견남기기">
<? if ($is_guest) { echo captcha_html(); } ?>
</fieldset>
<? if ($is_member) { ?><input type="hidden" name="pc_name" value="<?=cut_str($member['mb_nick'],255)?>"><? } ?>
<p><?=$po_etc?></p>
<table id="poll_result_wcmt" class="frm_tbl">
<caption>의견남기기</caption>
<tbody>
<? if ($is_guest) { ?>
<tr>
<th scope="row"><label for="pc_name">이름<strong class="sound_only">필수</strong></label></th>
<td><input type="text" id="pc_name" name="pc_name" class="fieldset_input required" size="10" required></td>
</tr>
<? } ?>
<tr>
<th scope="row">의견</th>
<td><input type="text" id="pc_idea" name="pc_idea" class="fieldset_input required" size="47" required maxlength="100" title="의견"></td>
</tr>
<? if ($is_guest) { ?>
<tr>
<th scope="row">자동등록방지</th>
<td><?=captcha_html();?></td>
</tr>
<? } ?>
</tbody>
</table>
<div class="btn_confirm">
<input type="submit" class="btn_submit" value="의견남기기">
</div>
</form>
<? } ?>