issue 805 fixed. Thanks to mailempc.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9935 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2011-12-09 06:12:48 +00:00
parent 5331cf74f1
commit 1da2b75cf3
2 changed files with 15 additions and 17 deletions

View file

@ -65,8 +65,7 @@ span.whiteBtn input{display:inline-block;height:26px;margin:0;padding:1px 12px 0
.signupTable caption span.cap_right{float:right;width:13px;background:url(../images/sng_tr.gif) no-repeat top left}
.signupTable tbody{margin:0;padding:0}
.signupTable th{background:transparent;vertical-align:top}
.signupTable th div{padding:10px 0 0 45px;text-align:left}
.signupTable th{background:transparent;vertical-align:top;padding:10px 0 0 45px;text-align:left}
.signupTable .title{height:30px;background:url(../images/sng_mr.gif) repeat-y top right;vertical-align:middle}
.signupTable td input.iText{width:200px;height:20px;border:#C1C1C1 solid 1px}
@ -75,10 +74,9 @@ span.whiteBtn input{display:inline-block;height:26px;margin:0;padding:1px 12px 0
#memberModule .signupTable em.require{margin-left:5px;color:red}
.signupTable .wide p{margin:10px 0 15px}
.signupTable td{padding:10px 0;background:url(../images/sng_mr.gif) repeat-y top right}
.signupTable tr.agreement{}
.signupTable th.agreement{padding:5px 20px;background:url(../images/sng_mr.gif) repeat-y top right}
.signupTable th.agreement p{margin:0;font-weight:normal;text-align:justify}
.signupTable th.agreement div.agreementButton{margin:10px 0}
.signupTable td.agreement{padding:5px 20px;background:url(../images/sng_mr.gif) repeat-y top right}
.signupTable td.agreement .text{height:200px;overflow:auto;margin:1em 0}
.signupTable td.agreement div.agreementButton{margin:10px 0}
.signupTable .btnbar_vat{height:70px !important;padding-top:20px;vertical-align:top}
.signupTable .btnbar_vat span.button{margin-top:20px}

View file

@ -32,43 +32,43 @@
<th colspan="2" class="title">{$lang->member_default_info}</th>
</tr>
<!--@if(!$is_logged && $member_config->agreement)-->
<tr class="agreement">
<th colspan="2" class="agreement">
{$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>
</th>
</td>
</tr>
<!--@end-->
<tr>
<th><div> {$identifierForm->title}<em class="require">*</em></div></th>
<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><div> {$lang->password}<em class="require">*</em></div></th>
<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><div> {$lang->password2}<em class="require">*</em></div></th>
<th> {$lang->password2}<em class="require">*</em></th>
<td><input type="password" name="password2" value="" class="iText"/></td>
</tr>
<tr loop="$formTags=>$formTag">
<th><div>{$formTag->title}</div></th>
<th>{$formTag->title}</th>
<td cond="$formTag->name != 'signature'">{$formTag->inputTag}</td>
<td cond="$formTag->name =='signature'">{$editor}</td>
</tr>
<tr>
<th><div>{$lang->allow_mailing}</div></th>
<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><div>{$lang->allow_message}</div></th>
<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>
@ -76,7 +76,7 @@
</td>
</tr>
<tr cond="class_exists('AddonCaptcha') && $oCaptcha && $oCaptcha->addon_info->apply_signup=='apply'">
<th><div>{$lang->captcha}</div></th>
<th>{$lang->captcha}</th>
<td>
{$oCaptcha->inlineDisplay()}
</td>