SIM0201.tpl 2.1 KB
<html>
<head>
<meta http-equiv="content-type" content="text/html; cahrset=euc-jp">
<meta http-equiv="content-style-type" content="text/css">
<meta name="robots" content="noindex, nofollow">
{literal}
<script language="javascript">

function chk_up(){

	txtName = "comment";
	//文字数チェック
	val = document.frm.elements[txtName].value;
	if (val.length > 64) {
		alert("文字数が大き過ぎます。");
		return false;
	}
	document.frm.action = "SIM0202.php";
	document.frm.method="POST";
	document.frm.submit();
}

function lnk_list(){
//	location.replace("SIM0200.php?backflg="+flg);
	document.frm.action = "SIM0200.php";
	document.frm.method="POST";
	document.frm.submit();

}

</script>
{/literal}
<title>{$PHP_SYSNAME}</title>
<link rel="stylesheet" href="./templates/SIM.css" type="text/css" />
</head>

<body>
<form name="frm">

<div class="LoginBody">

	<div class="LoginHeader">
		{$PHP_SYSNAME}
	</div>
	<div class="MenuUserinfo">
		<span class="NameText">{$PHP_GROUP_NAME} / {$PHP_USER_NAME}</span>
		<span class="LinkText">
			<a href = "SIM0100.php">メニューへ</a> / 
			<a href = "index.php">ログアウト</a>
		</span>
	</div>

	<div class="ConfOutline">
		
		<div class="ConfTitle">
			コメント入力画面
		</div>
		<div class="ConfMain">
			<input type="button" value="コメント登録" onclick="chk_up()"> 
			<input type="button" value="戻る" onclick="lnk_list()">
			<table class="ConfTable">
				<tr>
					<th>
						<!--{if $sMode == 1}-->
							収入
						<!--{else} -->
							支出
						<!--{/if}-->
						 {$SIM_cboYaer}年 {$mm}月 {$bName}  {$dName} {$cName} コメント
					</th>
				</tr>
				<tr>
					<td>
						<textarea name="comment" rows="3" cols="64">{$sComment}</textarea>
					</td>
				</tr>
			</table>
		</div>
	</div>

	<div class="LoginFooter">
		&#169; Copyright2006-2009 All rights reserved by Mediatech. Co., Ltd.
	</div>
</div>
<input type="hidden" name="SIM_cboYaer" value="{$SIM_cboYaer}">
<input type="hidden" name="mm" value="{$mm}">
<input type="hidden" name="sMode" value="{$sMode}">
<input type="hidden" name="dSeq" value="{$dSeq}">
<input type="hidden" name="cSeq" value="{$cSeq}">

</form>
</body>
</html>