# form부분

### Login form

```markup
<!-- 로그인 -->
<div id="login_wrap">
    <h4 class="ir_su">로그인 정보</h4>
    <form id="login_form" name="login_form" action="post">
        <fieldset>
            <legend class="ir_su">로그인 및 관련 설정</legend>
            <div class="login_header">
                <h5 class="ir_su">로그인보안</h5>
                <div class="lh_check">
                    <input type="checkbox" class="input_check" id="infor_check">
                    <label for="infor_check">로그인 상태 유지 </lable>
                </div>
                <div class="ih_ip">
                    IP 보안 <em>ON</em>
                </div>
            </div>
            <div class="login_content">
                <h5 class="ir_su"> 로그인 영억 </h5>
                <div class="lc_text">
                    <label for="uid" class="ir_su">아이디</label>
                    <input type="text" id="uid" name="uid" class="input_text"
                        maxlength="20">
                    <label for="upw" class="ir_su">비밀번호</label>
                    <input type="password" id="upw" name="upw" class="input_text"
                        maxlength="20">
                </div>
                <button class="lc_btn" type="submit"> 로그인</button>
            </div>
            <div class="login_footer">
                <h5 class="ir_su">로그인 문제해결</h5>
                <ul>
                    <li><a href="#"><strong>회원가입</strong> /</a></li>
                    <li><a href="#">아이디</a>&middot;<a href="#">비밀번호 찾기</a></li>
                </ul>
            </div>
        </fieldset>
    </form>
</div>
<!--// 로그인-->
```

* &#x20;form을 사용할때는 항상 fieldset 과 lagend를 사용한다.&#x20;
* checkbox 사용할때는 반드시 label태그를 같이 사용한다.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://leeboa.gitbook.io/study/web-standard/form.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
