사용자: 게시판스킨 글쓰기 캡챠

This commit is contained in:
whitedot
2013-01-15 11:26:55 +09:00
parent 0ab17c519c
commit 440ba38693
3 changed files with 12 additions and 4 deletions

View File

@ -33,7 +33,6 @@ $(function() {
$("#captcha_key").focus();//이미지 새로고침 후 입력박스에 포커스 : 지운아빠 2012-07-13
}
})
.css("cursor", "pointer")
.trigger("click");
$("#captcha_wav").click(function(){

View File

@ -244,6 +244,8 @@ a {color:#000;text-decoration:none}
.frm_tbl select {padding:2px}
.frm_file {display:block;margin-bottom:5px}
.frm_info {display:block;padding:5px 0 0;color:#595959;line-height:1.3em}
.frm_tbl #captcha {margin:0;padding:0;border:0;background:transparent}
.frm_tbl #captcha input {margin-left:5px}
.readonly {background:#ff3061}

View File

@ -118,7 +118,7 @@ echo $option_hidden;
<tr>
<th scope="row">파일 #<?=$i?></th>
<td>
<input type="file" name="bf_file[]" class="frm_input frm_file" title="파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능">
<input type="file" name="bf_file[]" class="frm_input" title="파일 용량 <?=$upload_max_filesize?> 이하만 업로드 가능">
<? if ($is_file_content) { ?>
<input type="text" name="bf_content[]" class="frm_input" size="50" title="파일 설명을 입력해주세요.">
<?}?>
@ -126,11 +126,18 @@ echo $option_hidden;
</tr>
<?}?>
<? if ($is_guest) { //자동등록방지 ?>
<tr>
<th scope="row">자동등록방지</th>
<td>
<?=$captcha_html?>
</td>
</tr>
<? } ?>
</tbody>
</table>
<?=$captcha_html?>
<div class="btn_confirm">
<input type="submit" id="btn_submit" value="글쓰기" accesskey="s">
<a href="./board.php?bo_table=<?=$bo_table?>" title="글쓰기를 취소하고 목록으로 돌아가기">목록</a>