rhymix/themes/xe_solid_enterprise/modules/member/signup_form.html
ChanMyeong f18b7c4c0b HTML/CSS code cleaning.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10302 201d5d3c-b55e-5fd7-737f-ddc643e51545
2012-03-02 19:05:23 +00:00

93 lines
3.5 KiB
HTML

<!--%import("../../tpl/js/signup_check.js")-->
<!--%import("filter/signup.xml")-->
<!--// datepicker javascript plugin load -->
<!--%load_js_plugin("ui")-->
<!--%load_js_plugin("ui.datepicker")-->
<!--#include("./common_header.html")-->
<h3 class="pTitle">{$lang->cmd_signup}</h3>
<form ruleset="@insertMember" id="fo_insert_member" class="form" action="./" method="post" enctype="multipart/form-data">
<input type="hidden" name="act" value="procMemberInsert" />
<table cellspacing="0" cellpadding="0" class="signupTable">
<caption><span class="cap_left">Sign Up</span><span class="cap_right"></span></caption>
<tbody>
<tr>
<th colspan="2" class="title">{$lang->member_default_info}</th>
</tr>
<!--@if(!$is_logged && $member_config->agreement)-->
<tr>
<td colspan="2" class="agreement">
<div class="text">{$member_config->agreement}</div>
<div class="agreementButton">
<input type="checkbox" name="accept_agreement" value="Y" id="accept_agree" />
<label for="accept_agree">{$lang->about_accept_agreement}</label>
</div>
</td>
</tr>
<!--@end-->
<tr>
<th>{$identifierForm->title}<em class="require">*</em></th>
<td class="wide">
<input type="text" name="{$identifierForm->name}" value="{$identifierForm->value}" class="iText" /> <p>{$lang->about_user_id}</p> </td>
</tr>
<tr>
<th>{$lang->password}<em class="require">*</em></th>
<td><input type="password" name="password" value="" class="iText"/><p>{$lang->about_password}</p></td>
</tr>
<tr>
<th> {$lang->password2}<em class="require">*</em></th>
<td><input type="password" name="password2" value="" class="iText"/></td>
</tr>
<tr loop="$formTags=>$formTag">
<th>{$formTag->title}</th>
<td cond="$formTag->name != 'signature'">{$formTag->inputTag}</td>
<td cond="$formTag->name =='signature'">{$editor}</td>
</tr>
<tr>
<th>{$lang->allow_mailing}</th>
<td>
<input type="radio" name="allow_mailing" id="mailingYes" value="Y" checked="checked"|cond="$member_info->allow_mailing == 'Y'"> <label for="mailingYes">{$lang->cmd_yes}</label>
<input type="radio" name="allow_mailing" id="mailingNo" value="N" checked="checked"|cond="$member_info->allow_mailing != 'Y'" > <label for="mailingNo">{$lang->cmd_no}</label>
</td>
</tr>
<tr>
<th>{$lang->allow_message}</th>
<td>
<block loop="$lang->allow_message_type=>$key,$val">
<input type="radio" name="allow_message" value="{$key}" checked="checked"|cond="$member_info->allow_message == $key" id="allow_{$key}" /> <label for="allow_{$key}">{$val}</label>
</block>
</td>
</tr>
<tr cond="class_exists('AddonCaptcha') && $oCaptcha && $oCaptcha->addon_info->apply_signup=='apply'">
<th>{$lang->captcha}</th>
<td>
{$oCaptcha->inlineDisplay()}
</td>
</tr>
</tbody>
</table>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
<span class="btn"><a href="{getUrl('act','','member_srl','')}">{$lang->cmd_cancel}</a></span>
</div>
</form>
<script type="text/javascript">
(function($){
$(function(){
var option = { changeMonth: true, changeYear: true, gotoCurrent: false,yearRange:'-100:+10', 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).parent().prevAll('input').val('');
return false;});
});
})(jQuery);
</script>
<!--#include("./common_footer.html")-->