묻고답하기

wirteform.html 문서를 열었더니

<!--%import("filter/insert.xml")-->
<!--#include("header.html")-->

<form action="./" method="post" onsubmit="return procFilter(this, insert)" id="fo_write">
<input type="hidden" name="mid" value="{$mid}" />
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
<input type="hidden" name="document_srl" value="{$document_srl}" />

<div class="uri" title="{$lang->document_url}"><a href="{$oDocument->getPermanentUrl()}">{$oDocument->getPermanentUrl()}</a></div>

<div class="boardWrite">
    <!--@if(!$is_logged)-->
    <div class="userNameAndPw">
        <label for="userName">{$lang->writer}</label>
        <input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>

        <label for="userPw">{$lang->password}</label>
        <input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />

        <label for="emailAddress">{$lang->email_address}</label>
        <input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>

        <label for="homePage">{$lang->homepage}</label>
        <input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
    </div>
    <!--@end-->

    <div class="title">
        <!--@if($module_info->use_category=="Y")-->
        <select name="category_srl" class="category">
            <option value="">{$lang->category}</option>
            <!--@foreach($category_list as $val)-->
            <option <!--@if(!$val->grant)-->disabled="disabled"<!--@endif--> value="{$val->category_srl}" <!--@if($val->grant&&$val->selected||$val->category_srl==$oDocument->get

('category_srl'))-->selected="selected"<!--@endif-->>
                {str_repeat("&nbsp;&nbsp;",$val->depth)} {$val->title} ({$val->document_count})
            </option>
            <!--@endforeach-->
        </select>
        <!--@else-->
        <label class="title">{$lang->title}</label>
        <!--@endif-->
        <input type="text" name="title" class="title inputTypeText" value="{htmlspecialchars($oDocument->getTitleText())}" />
    </div>

    <dl class="option">
        <!--@if($grant->manager)-->
        {@ $_color = array('555555','222288','226622','2266EE','8866CC','88AA66','EE2222','EE6622','EEAA22','EEEE22') }
        <dd><select name="title_color" id="title_color" <!--@if($oDocument->get('title_color'))-->style="background-color:#{$oDocument->get('title_color')};"<!--@end-->

onchange="this.style.backgroundColor=this.options[this.selectedIndex].style.backgroundColor;">
                <option value="" style="background-color:#FFFFFF;">{$lang->title_color}</option>
                <!--@foreach($_color as $_col)-->
                <option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}

</option>
                <!--@endforeach-->
            </select></dd>
        <dd>
            <input type="checkbox" name="title_bold" id="title_bold" value="Y" <!--@if($oDocument->get('title_bold')=='Y')-->checked="checked"<!--@end--> />
            <label for="title_bold">{$lang->title_bold}</label>
        </dd>
        <dd>
            <input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" />
            <label for="is_notice">{$lang->notice}</label>
        </dd>
        <dd>
            <input type="checkbox" name="lock_comment" value="Y" <!--@if($oDocument->isLocked())-->checked="checked"<!--@end--> id="lock_comment" />
            <label for="lock_comment">{$lang->lock_comment}</label>
        </dd>
        <!--@endif-->
        <!--@if($module_info->secret=="Y")-->
        <dd>
            <input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
            <label for="is_secret">{$lang->secret}</label>
        </dd>
        <!--@end-->
        <dd>
            <input type="checkbox" name="allow_comment" value="Y" <!--@if($oDocument->allowComment())-->checked="checked"<!--@end--> id="allow_comment" />
            <label for="allow_comment">{$lang->allow_comment}</label>
        </dd>
        <dd>
            <input type="checkbox" name="allow_trackback" value="Y" <!--@if($oDocument->allowTrackback())-->checked="checked"<!--@end--> id="allow_trackback" />
            <label for="allow_trackback">{$lang->allow_trackback}</label>
        </dd>
        <!--@if($is_logged)-->
        <dd>
            <input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
            <label for="notify_message">{$lang->notify}</label>
        </dd>
        <!--@end-->
    </dl>

    <!--@if($module_info->extra_vars)-->
    <table cellspacing="0" summary="" class="extraVarsList">
    <col width="150" />
    <col />
    <!--@foreach($module_info->extra_vars as $key => $val)-->
        <!--@if($val->name)-->
    <tr>
        <th scope="row">{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></th>
        <td><!--#include("./extra_var_form.html")--></td>
    </tr>
        <!--@endif-->
    <!--@endforeach-->
    </table>
    <!--@endif-->

    <div class="editor">{$oDocument->getEditor()}</div>

    <div class="tag">
        <input type="text" name="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" />
        <p class="info">{$lang->about_tag}</p>
    </div>
</div>

        <div class="fl gap1">
            <!--@if($is_logged)-->
            <span class="button {$btn_class}"><input type="button" value="{$lang->cmd_temp_save}"  onclick="doDocumentSave(this); return false;" /></span>
            <span class="button {$btn_class}"><input type="button" value="{$lang->cmd_load}"  onclick="doDocumentLoad(this); return false;" /></span>
            <span class="button {$btn_class}"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'" /></span>
            <!--@end-->
        </div>

        <div class="fr gap1">
            <span class="button {$btn_class}"><input type="button" value="{$lang->cmd_preview}" onclick="doDocumentPreview(this); return false;" /></span>
            <span class="button {$btn_class}"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
        </div>

        <div class="clear"></div>
    </form>
<!--#include("footer.html")-->

이렇게 되있습니다..

여기서 무엇을 수정해야할까여 ??
완전초짜라 죄송해요 ㅠㅠ

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
Zero보드 강제로 비밀글만 쓰도록 하는 방법은 없나요?? [5] 2009.02.28 by -
dd http://love9.22.to생방송 카 지노 게임만 하면 돈되는ㅂ ㅏ카라 [2] 2009.02.28 by 저놈쥐여
설치 문제입니다 . 설치후 도메인/xe/인덱스 들어갔더니 나오는 글 입니다. admin 도 마찬가지로.. [1] file 2009.02.28 by GUTU
Zero보드 댓글이 게시글과 함께 목록에 표시되도록 ?? [1] 2009.02.28 by 띵야
써니~** 댓글등록의 버튼색깔 수정 [2] 2009.02.28 by 써니~**
케이준 서버 돌리시는 분 xe_document.frm 파일좀 부탁드립니다.  
박찬 로그인문제,첨부파일문제 [1] 2009.02.28 by 박세홍659
해커다 1.2 확장변수  
Zero보드 글쓰기 누르면 밑에 미리보기 와 등록이 있는데 미리보기 버튼 지우는법 ?? [2] 2009.02.28 by Zero보드
Zero보드 게시글주소 등록일 지우기 ;; 다시한번요 ㅠ [6] 2009.02.28 by Zero보드
한결님 외부 페이지에(~.php) GET변수값 넘기기 질문입니다  
sygyun 안녕하세요... [1] 2009.02.28 by 닝기리쓰레빠
bumworld 메인 페이지를 직접 작성하려고 합니다. 쿼리를 어떻게 만들어서 호출해야 하나요? [1] 2009.02.28 by 닝기리쓰레빠
Zero보드 게시판 등록일 게시글 주소 없애는법 ??? [2] 2009.02.28 by 닝기리쓰레빠
닝기리쓰레빠 제로보드끼리 게시물 공유 방법 문의  
왜만지냐 게시물첨부파일경로 뽑아내는 코드좀 열려주세요  
혼스 최근 게시글의 리스트를 클릭하면 게시판을 새창으로 띄우게 하려면 [3] 2009.02.28 by 혼스
Zero보드 게시판 글을 비밀글로 했는데 아무나 다 열어서 볼수있네요 ??? [3] 2009.02.28 by 넨네
dukecherry 반짝거리며 변하는 메뉴글자는 어떻게... [2] 2009.02.28 by dukecherry
이병진682 html편집을 막아도 자동html이되네요 ;; [2] 2009.02.28 by -
리어코리아 고영수 과장님만이 확답을 주실 듯 ... [3] 2009.02.28 by 리어코리아
궁금이 웹진형 최근 게시물에서.. [1] file 2009.02.28 by 띵야
김태식805 홈페이지 수정에 대해서.. [1] 2009.02.28 by 넨네
이권묵 이게 뭐죠? 퍼센트에 대하여 질문요^^ [1] 2009.02.28 by 띵야
질문자 메인에 최근게시물 축출이 말썽입니다. [1] 2009.02.28 by kanasii
질문자 최근게시물 축축 때문인데요. [1] 2009.02.28 by kanasii
이병진682 관리자권한으로 아이피차단방법 없나요? [2] 2009.02.28 by 이병진682
kanasii 1.2.0 확장변수 & 최근이미지 위젯 버그? ^_^;; [2] file 2009.02.28 by kanasii
블루하트 faceoff 업뎃후 페이지가 열리지 않습니다.  
임승권 회원관리를 엑셀로 저장할 수 있나요?