로그인 페이지 required class 부여

This commit is contained in:
whitedot
2013-03-05 09:23:06 +09:00
parent deea508e66
commit 6a9706c379
3 changed files with 7 additions and 8 deletions

View File

@ -10,9 +10,9 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
<fieldset class="cbg">
<label for="login_id" class="login_id">회원아이디<strong class="sound_only">필수</strong></label>
<input type="text" id="login_id" name="mb_id" class="fs_input" maxLength="20" size="20" required>
<input type="text" id="login_id" name="mb_id" class="fs_input required" maxLength="20" size="20" required>
<label for="login_pw" class="login_pw">패스워드<strong class="sound_only">필수</strong></label>
<input type="password" id="login_pw" class="fs_input" name="mb_password" maxLength="20" size="20" required>
<input type="password" id="login_pw" class="fs_input required" name="mb_password" maxLength="20" size="20" required>
<input type="submit" class="btn_submit" value="로그인">
<input type="checkbox" id="login_auto_login" name="auto_login">
<label for="login_auto_login">자동로그인</label>