Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
172 lines (161 sloc) 7.57 KB
<load target="../../tpl/js/signup_check.js"/>
<!--// datepicker javascript plugin load -->
<!--%load_js_plugin("ui")-->
<!--%load_js_plugin("ui.datepicker")-->
<include target="./common_header.html"/>
<div class="container">
<div class="row">
<h4 style="border-bottom:1px solid #ccc; color:#009688">{$lang->cmd_signup}</h4>
</div>
<div cond="$XE_VALIDATOR_MESSAGE && $XE_VALIDATOR_ID == 'modules/member/skins'"
class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="@insertMember" id="fo_insert_member" action="./" method="post" enctype="multipart/form-data"
class="col s12">
<input type="hidden" name="act" value="procMemberInsert"/>
<input type="hidden" name="xe_validator_id" value="modules/member/skins"/>
<input type="hidden" name="success_return_url" value="{getUrl('act','dispMemberInfo')}"/>
<div class="agreement" cond="$member_config->agreement">
<div class="text">
{$member_config->agreement}
</div>
<div class="confirm">
<label for="accept_agree">
<input type="checkbox" name="accept_agreement" value="Y" id="accept_agree"/>
{$lang->about_accept_agreement}
</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix">vpn_key</i>
<input type="text" |cond="$identifierForm->name!='email_address'"
type="email" |cond="$identifierForm->name=='email_address'"
name="{$identifierForm->name}"
id="{$identifierForm->name}"
value="{$identifierForm->value}"
class="validate"
required/>
<label for="{$identifierForm->name}">{$identifierForm->title}</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix">lock</i>
<input type="password"
name="password"
id="password"
class="validate"
required/>
<label for="password">{$lang->password}</label>
</div>
<div class="input-field col s6">
<label for="password2">{$lang->password3}</label>
<input type="password"
name="password2"
id="password2"
class="validate"
required/>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">account_circle</i>
<input type="text"
name="user_name"
id="user_name"
class="validate"
required/>
<label for="user_name">{$lang->user_name}</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">email</i>
<input type="email"
name="email_address"
id="email_address"
class="validate"
required/>
<label for="email_address" data-error="잘못된 주소입니다." data-success="right">{$lang->email_address}</label>
</div>
</div>
<div class="row">
<div class="file-field input-field">
<div class="btn">
<i class="material-icons left">photo_camera</i>
<span>프로필사진</span>
<input type="file"/>
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text"/>
</div>
</div>
</div>
<div class="row">
<button class="btn waves-effect waves-light btn-large right" type="submit" name="action">가입하기
<i class="material-icons right">send</i>
</button>
</div>
<!--<div class="control-group">-->
<!--<label for="password" class="control-label"><em style="color:red">*</em> {$lang->password}</label>-->
<!--<div class="controls">-->
<!--<input type="password" name="password" id="password" value="" required />-->
<!--<p class="help-inline">{$lang->about_password_strength[$member_config->password_strength]}</p>-->
<!--</div>-->
<!--</div>-->
<!--<div class="control-group">-->
<!--<label for="password2" class="control-label"><em style="color:red">*</em> {$lang->password3}</label>-->
<!--<div class="controls">-->
<!--<input type="password" name="password2" id="password2" value="" required />-->
<!--</div>-->
<!--</div>-->
<!--<div class="control-group" loop="$formTags=>$formTag" cond="$formTag->name != 'signature'">-->
<!--<label for="{$formTag->name}" class="control-label">{$formTag->title}</label>-->
<!--<div class="controls">{$formTag->inputTag}</div>-->
<!--</div>-->
<!--<div class="control-group">-->
<!--<div class="control-label">{$lang->allow_mailing}</div>-->
<!--<div class="controls" style="padding-top:5px">-->
<!--<label for="mailingYes"><input type="radio" name="allow_mailing" id="mailingYes" value="Y" checked="checked"|cond="$member_info->allow_mailing == 'Y'" /> {$lang->cmd_yes}</label>-->
<!--<label for="mailingNo"><input type="radio" name="allow_mailing" id="mailingNo" value="N" checked="checked"|cond="$member_info->allow_mailing != 'Y'" /> {$lang->cmd_no}</label>-->
<!--</div>-->
<!--</div>-->
<!--<div class="control-group">-->
<!--<div class="control-label">{$lang->allow_message}</div>-->
<!--<div class="controls" style="padding-top:5px">-->
<!--<label for="allow_{$key}" loop="$lang->allow_message_type=>$key,$val"><input type="radio" name="allow_message" value="{$key}" checked="checked"|cond="$member_info->allow_message == $key || (!$member_info && $key == 'Y')" id="allow_{$key}" /> {$val}</label>-->
<!--</div>-->
<!--</div>-->
<!--<div class="btnArea" style="border-top:1px solid #ccc;padding-top:10px">-->
<!--<input type="submit" value="{$lang->cmd_registration}" class="btn btn-inverse pull-right" />-->
<!--<a href="{getUrl('act','','member_srl','')}" class="btn pull-left">{$lang->cmd_cancel}</a>-->
<!--</div>-->
</form>
</div>
<script>
//jQuery(function($){
// // label for setup
// $('.control-label[for]').each(function(){
// var $this = $(this);
// if($this.attr('for') == ''){
// $this.attr('for', $this.next().children(':visible:first').attr('id'));
// }
// });
//});
//(function($){
// $(function(){
// var option = { changeMonth: true, changeYear: true, gotoCurrent: false,yearRange:'-100:+10', dateFormat:'yy-mm-dd', onSelect:function(){
//
// $(this).prev('input[type="hidden"]').val(this.value.replace(/-/g,""))}
// };
// $.extend(option,$.datepicker.regional['{$lang_type}']);
// $(".inputDate").datepicker(option);
// $(".dateRemover").click(function() {
// $(this).prevAll('input').val('');
// return false;});
// });
//})(jQuery);
</script>
<include target="./common_footer.html"/>
Something went wrong with that request. Please try again.