Commit f413a53b by Kim Gyeongeun

#56955 レイアウト変更及びバグ修正

parent a39989fc
......@@ -10,6 +10,17 @@ import java.util.Map;
import javax.annotation.Resource;
import javax.mail.MessagingException;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.validator.GenericValidator;
import org.apache.log4j.Logger;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;
import org.h2.util.StringUtils;
import org.seasar.framework.util.StringUtil;
import org.seasar.struts.annotation.ActionForm;
import org.seasar.struts.annotation.Execute;
import jp.agentec.sinaburocast.action.AbstractAction;
import jp.agentec.sinaburocast.common.SinaburoConstant;
import jp.agentec.sinaburocast.common.annotation.NoLogin;
......@@ -27,17 +38,6 @@ import jp.agentec.sinaburocast.logic.MemberRegisterBatchLogic;
import jp.agentec.sinaburocast.service.MemberService;
import jp.agentec.sinaburocast.service.MessageService;
import org.apache.commons.lang.RandomStringUtils;
import org.apache.commons.validator.GenericValidator;
import org.apache.log4j.Logger;
import org.apache.struts.Globals;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;
import org.h2.util.StringUtils;
import org.seasar.framework.util.StringUtil;
import org.seasar.struts.annotation.ActionForm;
import org.seasar.struts.annotation.Execute;
/**
* 会員新規登録処理
*
......@@ -95,7 +95,7 @@ public class RegistAction extends AbstractAction {
if(avvs.getDevice().equals(SinaburoConstant.AccessType.PC)){
// PCはトップページを使用する
return "/";
return "/user/top/newUserRegist/";
} else {
return "/user/regist/";
}
......
......@@ -329,7 +329,7 @@ public class MemberInfoCsv extends AbstractCsv {
}
if (SinaburoUtil.mobileAddressCheck(checkMainPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.pcMail")));
errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.mainPcEmail")));
}
}
......@@ -343,8 +343,14 @@ public class MemberInfoCsv extends AbstractCsv {
}
}
if (!SinaburoUtil.mobileAddressCheck(checkSubPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.mbMail")));
if (SinaburoUtil.mobileAddressCheck(checkSubPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.email", SinaburoViewUtil.getMessage("labels.subPcEmail")));
}
}
// メインPCメールとサブPCメール重複チェック
if (StringUtil.isNotBlank(checkMainPcEmail) && StringUtil.isNotBlank(checkSubPcEmail)) {
if (checkMainPcEmail.equals(checkSubPcEmail)) {
errorMessage.append(SinaburoViewUtil.getMessage("errors.E071"));
}
}
......
......@@ -311,7 +311,8 @@ public class QuestionService extends AbstractService<Question> {
copiedQuestion.condRequiredAnswer = answerIdArrayStr.replaceAll(",$", "");
update(copiedQuestion, loginId);
answerIdArrayStr = "";
} else if (copiedQuestion.condRequiredQuestionNo.equals(0) && copiedQuestion.condRequiredAnswer != null) {
} else if ((copiedQuestion.condRequiredQuestionNo == null || copiedQuestion.condRequiredQuestionNo.equals(0))
&& copiedQuestion.condRequiredAnswer != null) {
copiedQuestion.condRequiredAnswer = null;
update(copiedQuestion, loginId);
}
......
......@@ -54,7 +54,7 @@ errors.E011=\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e00\u81f4\u3057\u307e\u305b\u
errors.E012=\u30ed\u30b0\u30a4\u30f3ID\u3082\u3057\u304f\u306f\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u4e0d\u6b63\u3067\u3059\u3002
errors.E013=\u73fe\u5728\u306e\u30dd\u30a4\u30f3\u30c8\u6570\u3088\u308a\u30dd\u30a4\u30f3\u30c8\u6d88\u8cbb\u6570\u304c\u5927\u304d\u3044\u3067\u3059\u3002
errors.E014=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306eE-mail\u3067\u3059\u3002
errors.E015=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306e\u643a\u5e2f\u96fb\u8a71E-mail\u3067\u3059\u3002
errors.E015=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306eE-mail(\u30b5\u30d6)\u3067\u3059\u3002
errors.E016=\u65e2\u306b\u767b\u9332\u6e08\u307f\u306e\u30ed\u30b0\u30a4\u30f3ID\u3067\u3059\u3002
errors.E017=\u65e5\u5225\u306e\u691c\u7d22\u306f\u671f\u9593(from)\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
errors.E018=\u65e5\u5225\u306e\u691c\u7d22\u306f\u671f\u9593(to)\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002
......
......@@ -15,6 +15,9 @@
}
function send_check(){
if ($("input[name=withDrawFlg]").is(":checked")) {
$("input[name=withDrawFlg]").val("1");
}
document.mainForm.submit();
return false;
}
......@@ -235,7 +238,7 @@
</tr>
<tr>
<td>退会フラグ</td>
<td>&nbsp;&nbsp;退会<input name="withDrawFlg" type="checkbox" / class="mgl10" value="$!memberEditForm.withDrawFlg" #if($memberEditForm.withDrawFlg != "0") checked #end ></td>
<td>&nbsp;&nbsp;退会<input name="withDrawFlg" type="checkbox" class="mgl10" value="$!memberEditForm.withDrawFlg" #if($memberEditForm.withDrawFlg == "1") checked #end></td>
</tr>
<tr>
<td>ポイント<font class="listpoint">*</font></td>
......
......@@ -83,7 +83,7 @@
<th width="50">説明</th>
<td>・データは一行に会員情報ずつタブ区切りで入力してください。<BR>
PC用E-MAIL、モバイル用E-MAILのどちらかは必須です。
E-mail(メイン)は必須です。
</td>
</tr>
......
......@@ -21,7 +21,7 @@
<div id="right_contents">
<table border="0" cellpadding="0" cellspacing="0" class="stripe">
<tr>
<th class="w240 t_center complete">会員一括登録完了完了しました。</th>
<th class="w240 t_center complete">会員一括登録完了しました。</th>
</tr>
</table>
......
......@@ -15,7 +15,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -197,7 +197,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -15,7 +15,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -190,7 +190,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -15,7 +15,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 -->
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 -->
<tr>
......@@ -94,7 +94,7 @@
</tr>
</table><!-- TABLE 3 END -->
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table><!-- TABLE2 END -->
</TD>
......
......@@ -104,7 +104,7 @@ $tools.getMsg("errorheader")
##<!-- 4:TEXTFIELD ユーザー入力値を値にする。-->
#elseif($!question.controlId == "4")
#if($!question.dispWitdth > 37) #set($!question.dispWitdth = 37) #end
<input type="text" id="#he($!question.questionId)" name="$answerIdValueName" value="$!escape.html($!answer.answerIdValue)" size="$!question.dispWitdth" #if($!question.questionInitDisable == "1") disabled #end/>
<input type="text" id="#he($!question.questionId)" name="$answerIdValueName" value="$!escape.html($!answer.answerIdValue)" style="width:100%;" size="$!question.dispWitdth" #if($!question.questionInitDisable == "1") disabled #end/>
##<!-- 5:日付入力 ユーザー入力値を値にする。-->
#elseif($!question.controlId == "5")
#set($dateIndex = $dateIndex+1)
......
......@@ -5,7 +5,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -48,7 +48,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
## end footer
......
<!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -16,7 +16,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------HEADER END -------------------------------------------------->
\ No newline at end of file
......@@ -9,7 +9,7 @@
<div class="input_form">
<FORM method="post" action="#qs('/user/login/auth')">
<input type="hidden" name="org.apache.struts.taglib.html.TOKEN" value="">
<table width="150" border="0" cellpadding="0" cellspacing="0">
<table width="150" border="0" cellpadding="0" cellspacing="0" style="padding-bottom: 10px;">
<tr style="padding: 15px 0 0 0;">
<div style="font-size: 8pt;">
$!tools.getMsg("loginId")
......@@ -41,7 +41,7 @@
</table>
</FORM>
</div>
<table width="150" border="0" cellspacing="0" cellpadding="0">
<table width="150" border="0" cellspacing="0" cellpadding="0" style="padding-bottom: 10px;">
<tr style="padding: 15px 0 0 0;">
<td nowrap align="center">
<a href="/em/user/top/newUserRegist/">
......
......@@ -97,7 +97,7 @@
<TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -110,7 +110,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD>
......@@ -119,7 +119,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 -->
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 -->
<tr>
......@@ -221,7 +221,7 @@
</tr>
</table><!-- TABLE 3 END -->
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table><!-- TABLE2 END -->
</TD>
......@@ -232,7 +232,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -262,7 +262,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -68,7 +68,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -71,7 +71,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -73,7 +73,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -84,7 +84,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -68,7 +68,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -60,7 +60,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -22,7 +22,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -40,7 +40,7 @@
<div id="top_message">
e-モニター制度(eモニ)は、市川市が運営する登録制のアンケート制度です。<br>登録いただいた方にメールで市からアンケートや情報を発信し、みなさんの声を広く集めて市政に反映していくものです。登録は無料です。ぜひ参加してください。
</div>
<img src="/em/images/top_news_new.png" width="410"
<img src="/em/images/top_news_new.png" width="750"
height="33" border="0" alt="お知らせ">
<div id="top_news">
<ul>
......@@ -199,7 +199,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0">
</td>
</tr>
......
......@@ -96,7 +96,7 @@
<TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -109,7 +109,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD>
......@@ -118,7 +118,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0"><!-- TABLE2 -->
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0"><!-- TABLE3 -->
<tr>
......@@ -577,7 +577,7 @@
</tr>
</table><!-- TABLE 3 END -->
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table><!-- TABLE2 END -->
</TD>
......@@ -588,7 +588,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -617,7 +617,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
......@@ -13,12 +13,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -121,7 +122,7 @@ $!escape.html($!genreItem.enqTitle)($!{genreItem.startDay}~$!{genreItem.endDay
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -38,7 +38,7 @@ $(function() {
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -329,7 +329,7 @@ $tools.getMsg("errorheader")
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -50,7 +50,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -254,7 +254,7 @@
</tr>
</table>
</td>
<td width="300" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" border="0"></td>
<td width="300" ><img src="/em/images/spacer.gif" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -15,7 +15,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -72,7 +72,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -73,7 +73,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -221,7 +221,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -196,7 +196,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -197,7 +197,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -103,7 +103,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -94,7 +94,7 @@
<TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -107,7 +107,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD>
......@@ -116,7 +116,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -256,7 +256,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......@@ -267,7 +267,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -296,7 +296,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
......@@ -94,7 +94,7 @@
<TD><!------------------------------------------------------HEADER START -------------------------------------------------->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -107,7 +107,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------HEADER END --------------------------------------------------></TD>
......@@ -116,7 +116,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -256,7 +256,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......@@ -267,7 +267,7 @@
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -296,7 +296,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!------------------------------------------------------FOOTER END --------------------------------------------------></TD>
......
......@@ -53,7 +53,7 @@
<table width="750" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="700" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
......@@ -71,7 +71,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......@@ -86,7 +86,7 @@
<table width="750" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="34" background="/em/images/shadowlft2.jpg">
<td width="34">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="691" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
......@@ -265,7 +265,7 @@
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......@@ -274,7 +274,7 @@
<!-- Footer Table Start -->
<table width="750" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="700" bgcolor="#FFFFFF">
<table width="700" border="0" cellspacing="0" cellpadding="0">
......@@ -310,7 +310,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -56,7 +56,7 @@
<!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -164,7 +164,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -45,7 +45,7 @@
<!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -258,7 +258,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -13,12 +13,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -29,7 +30,7 @@
<table width="780" border="0" cellspacing="0" cellpadding="0">
<td class="ctsTitle02" background="/em/images/shadowrgt2.jpg">
<td class="ctsTitle02">
#if($tools.isEmpty($userInfo.firstName) && $tools.isEmpty($userInfo.lastName))
マイページ
......@@ -188,7 +189,7 @@ $!escape.html($userInfo.firstName) $!escape.html($userInfo.lastName)さんのマ
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -37,7 +37,7 @@
<!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -172,7 +172,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -88,7 +88,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -83,7 +83,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -61,7 +61,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -23,7 +23,7 @@ function back(){
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -72,7 +72,7 @@ function back(){
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -55,7 +55,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -38,7 +38,7 @@ function memberRegistPage() {
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -115,7 +115,7 @@ function memberRegistPage() {
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -14,7 +14,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -88,7 +88,7 @@ ICHICOポイントをためることはできますが現金のチャージは
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -101,7 +101,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -27,7 +27,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -126,7 +126,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -64,7 +64,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -76,7 +76,7 @@ $tools.getMsg("dayError")
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -97,7 +97,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -24,7 +24,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -134,7 +134,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -92,7 +92,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -24,12 +24,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -112,7 +113,7 @@
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -60,7 +60,7 @@ TEL : 047-712-8633</td>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -24,12 +24,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -241,7 +242,7 @@
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -23,12 +23,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -546,7 +547,7 @@ em@e-moni.city.ichikawa.chiba.jpに空メールを送信ください。QRコー
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -34,12 +34,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -145,7 +146,7 @@
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg">
<td width="25">
<img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -13,12 +13,13 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
<td align="right" width="155" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td>
<td align="right" valign="top">#parse( "/WEB-INF/view/common/menu.vm" )</td>
<!-- <td align="left" width="10" background="/em/images/cts_bar.gif"><img src="/em/images/spacer.gif" border="0"></td> -->
<td align="left" width="20"></td>
<td align="center" valign="top">
##CONTENT START 各ページコンテンツ
......@@ -323,7 +324,7 @@ d.管理者がアンケートを配信し、モニターが回答を行ったア
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -63,7 +63,7 @@ function SetSubmit(mode)
<!-- header -->
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
......@@ -286,7 +286,7 @@ d.管理者がアンケートを配信し、モニターが回答を行ったア
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -35,7 +35,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25" ><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -378,7 +378,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -30,7 +30,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -237,7 +237,7 @@ $!userEditForm.birthdayY年$!userEditForm.birthdayM月$!userEditForm.birthdayD
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
<!-- Contents Table End -->
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -72,7 +72,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -102,7 +102,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -20,7 +20,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -124,7 +124,7 @@
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
......@@ -13,7 +13,7 @@
<TD>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25" background="/em/images/shadowlft2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="1024" bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tr>
......@@ -51,7 +51,7 @@
</tr>
</table>
</td>
<td width="25" background="/em/images/shadowrgt2.jpg"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
<td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
</tr>
</table>
</TD>
......
body {
background-color:#5FC4F4;
}
/* Text */
td {
font-size: 12pt;
......

3.55 KB | W: | H:

864 Bytes | W: | H:

src/main/webapp/images/logon_btn_new.png
src/main/webapp/images/logon_btn_new.png
src/main/webapp/images/logon_btn_new.png
src/main/webapp/images/logon_btn_new.png
  • 2-up
  • Swipe
  • Onion skin
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment