회원스킨/로그인 아이디 중복 제거

This commit is contained in:
whitedot
2012-12-06 13:15:58 +09:00
parent 0efc1a5160
commit de96afedf7

View File

@ -36,8 +36,8 @@ else {
<input type="text" id="login_mb_id" name="mb_id" maxLength="20" size="15" required>
<label for="login_mb_password">패스워드</label>
<input type="password" id="login_mb_password" name="mb_password" maxLength="20" size="15" required onkeypress="check_capslock(event, 'login_mb_password');">
<input type="checkbox" id="auto_login" name="auto_login" onclick="if (this.checked) { if (confirm('자동로그인을 사용하시면 다음부터 회원아이디와 패스워드를 입력하실 필요가 없습니다.\n\n\공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?')) { this.checked = true; } else { this.checked = false;} }">
<label for="auto_login">자동로그인</label>
<input type="checkbox" id="login_auto_login" name="auto_login" onclick="if (this.checked) { if (confirm('자동로그인을 사용하시면 다음부터 회원아이디와 패스워드를 입력하실 필요가 없습니다.\n\n\공공장소에서는 개인정보가 유출될 수 있으니 사용을 자제하여 주십시오.\n\n자동로그인을 사용하시겠습니까?')) { this.checked = true; } else { this.checked = false;} }">
<label for="login_auto_login">자동로그인</label>
<input type="submit" value="로그인">
</fieldset>