imageFileRegist.html.svn-base 1.59 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
#set($title = "画像・ドキュメントファイル登録")
#set($menukubun = "5")
#parse( "/WEB-INF/view/common/header_admin.vm" )

  <script language="JavaScript" type="text/JavaScript">

    <!--
    function imageFileUpload(){
    	document.frm.submit();
	}
    -->
  </script>

<div id="contents">
<div id="contents_main">
<div id="breadcrumbsWrap">

</div><!--[ /breadcrumbsWrap ]-->
<div id="main" class="clearfix">

<h2 class="contents_title">画像・ドキュメントファイル登録</h2>

<div id="right_contents">
#if($tools.getMsgs()!="")
<font color="red" size="2">入力エラーがあります。</font>
#end
<form method="POST" name="frm" enctype="multipart/form-data" action="#q('/admin/setting/imageFileRegist/imageFileUpload/')" >

<table border="0" cellpadding="0" cellspacing="0" class="stripe2 mgb10 w840">
	<tr>
		<td class="w120">アップロードファイル</td>
		<td>
			<input type="file" name="file" size="60" id="file" multiple="multiple">
			<br/>$tools.getMsg("file")
		</td>
	</tr>
	<tr>
		<td class="w120">メモ</td>
		<td>
			<label for="textarea"></label>
			<textarea name="memo" id="memo" cols="45" rows="5" class="w350"></textarea>
		</td>
	</tr>
</table>
<div class="btn_area2" style="width:840px;">
	<input type="button" class="button" onclick="return imageFileUpload();" value="アップロード">
	<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
</div>
#makeToken()
</form>
</div>
</div>
<div id="contents_bottom">
<img src="/em/images/bg_contents_bottom.jpg" width="1036" height="15" /> </div> </div>
</div>
</div>
</div>

#parse( "/WEB-INF/view/common/footer_admin.vm" )