HTML/CSS code cleaning.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10302 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-03-02 19:05:23 +00:00
parent 5ef08c16ec
commit f18b7c4c0b
73 changed files with 399 additions and 701 deletions

View file

@ -7,82 +7,72 @@
<!--#include("./common_header.html")-->
<h3 class="pTitle">{$lang->cmd_signup}</h3>
<h3 class="pTitle">{$lang->cmd_signup}</h3>
<form ruleset="@insertMember" id="fo_insert_member" class="form" action="./" method="post" enctype="multipart/form-data">
<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>
<tfoot>
<tr class="button_tr">
<th class="button_col" colspan="2">
<!-- <span class="bl_bg"></span> -->
<div class="btm_bg">
<div class="br_bg">
<span class="grayBtn"><input type="submit" value="{$lang->cmd_registration}" /></span>
<a href="{getUrl('act','','member_srl','')}" class="whiteBtn"><span>{$lang->cmd_cancel}</span></a>
</div>
</div>
</th>
</tr>
</tfoot>
<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>
<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">