묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입폼에서 아이디 4글자 이상 입력받게 하려면 어떻게 해야하나요?
2010.09.02 08:43
아무리 봐도 모르겠네요..
signup_form.html 파일 상단에서
<!--%import("../../tpl/js/signup_check.js")-->
<!--%import("../../tpl/js/krzip_search.js")-->
<!--%import("filter/signup.xml")--> <!--// datepicker javascript plugin load -->
<!--%load_js_plugin("ui")-->
<!--%load_js_plugin("ui.datepicker")-->
저렇게 파일들을 불러오긴 하는데... 봐도 모르겠고 현재 3글자 이상으로 되어있는데요 4글자 이상으로 바꾸고 싶습니다. 도움부탁드립니다.
<!--%import("../../tpl/js/krzip_search.js")-->
<!--%import("filter/signup.xml")--> <!--// datepicker javascript plugin load -->
<!--%load_js_plugin("ui")-->
<!--%load_js_plugin("ui.datepicker")-->
저렇게 파일들을 불러오긴 하는데... 봐도 모르겠고 현재 3글자 이상으로 되어있는데요 4글자 이상으로 바꾸고 싶습니다. 도움부탁드립니다.
<form>
<node target="user_id" required="true" minlength="3" maxlength="20" filter="userid" />
<node target="password1" required="true" minlength="6" maxlength="20" />
<node target="password2" required="true" minlength="6" maxlength="20" equalto="password1" />
<node target="user_name" required="true" minlength="2" maxlength="40" />
<node target="nick_name" required="true" minlength="2" maxlength="40" />
<node target="email_address" required="true" minlength="1" maxlength="200" filter="email" />
</form> 수정하시면 됩니다.