popup.html 3.76 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>予約語選択</title>
  <link href="/em/css/ui.tabs.css" rel="stylesheet" type="text/css" media="print, projection, screen" />
  <script src="/em/js/jquery-1.4.2.js" type="text/javascript"></script>
  <script src="/em/js/ui.core.js" type="text/javascript"></script>
  <script src="/em/js/ui.tabs.js" type="text/javascript"></script>
  <script src="/em/js/common.js" type="text/javascript"></script>
  <script src="/em/js/jquery.datepick.js" type="text/javascript"></script>
  <script src="/em/js/jquery.datepick-ja.js" type="text/javascript"></script>

  <link href="/em/css/default_new.css" rel="stylesheet" type="text/css">
  <link href="/em/css/jquery.datepick.css" rel="stylesheet" type="text/css">

  <script type="text/javascript">

     function searchEnq(tabName){
    	document.getElementById("tabName").value = tabName;
    	document.frm.submit();

	}

    $(function() {
      $('#tabs > ul').tabs();
    });

function setC(val){

	location.href="#q('/admin/setting/messageRegist/setClipboard/')?clipboard="+val;
}

function setLink(valLink){

	location.href="#q('/admin/setting/messageRegist/setClipboardLink/')?clipboard="+valLink;
}
function copyToClipboard(text)
{
39
	navigator.clipboard.writeText(text)
Kim Gyeongeun committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
}
  </script>
<script language="javascript" type="text/javascript" charset="utf-8">
<!--
	//開始日
	$(function() {
	  $('#operationTermFrom').datepick({showTrigger: '#calFromDate',
		  minDate: '-1m',
		  maxDate: '+1m +1w'});
	});

	//終了日
	$(function() {
	  $('#operationTermTo').datepick({showTrigger: '#calToDate'});
	});

	// -->
</script>
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72

<style>

.table{
	 border-collapse:separate; 
	 border-spacing:0px 25px; 
	 table-layout: fixed;
}

.td{
	word-wrap: break-word;
}

</style>

Kim Gyeongeun committed
73 74 75 76 77
</head>
<body>
  <div id="tabs">
    <ul>
      <li><a href="#tab1" id="tab1_a"><span>顧客情報</span></a></li>
78
      &emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;&emsp;
Kim Gyeongeun committed
79 80 81 82
      <input type="button" align="left" value="閉じる" onClick="window.close()">
    </ul>

    <div id="tab1">
83
<table border="0" class="table" cellspacing="5" cellpadding="0" width="100%">
Kim Gyeongeun committed
84 85

	<tr class="gray">
86 87 88
		<td class="td" width="35%">ログインID</td>
		<td class="td" width="15%"><input type="button" onclick='copyToClipboard("%loginId%")' value="コピー"/>&nbsp;&nbsp;&nbsp;</td>
		<td class="td" width="50%">%loginId%</td>
Kim Gyeongeun committed
89 90
	</tr>
	<tr class="gray">
91 92 93
		<td class="td" width="35%">パスワード</td>
		<td class="td" width="15%"><input type="button" onclick='copyToClipboard("%passWord%")' value="コピー"/>&nbsp;&nbsp;&nbsp;</td>
		<td class="td" width="50%">%passWord%</td>
Kim Gyeongeun committed
94 95
	</tr>
	<tr class="gray">
96 97 98
		<td class="td" width="35%">ログインURL</td>
		<td class="td" width="15%"><input type="button" onclick="copyToClipboard('$!{messageRegistForm.serverUrl}#q("/user/login/")');" value="コピー"/>&nbsp;&nbsp;&nbsp;</td>
		<td class="td" width="50%">$!{messageRegistForm.serverUrl}#q("/user/login/")</td>
Kim Gyeongeun committed
99 100
	</tr>
	<tr class="gray">
101 102 103
		<td class="td" width="35%">パスワード確認用URL</td>
		<td class="td" width="15%"><input type="button" onclick="copyToClipboard('$!{messageRegistForm.serverUrl}#q("/user/passwordMailSend/confirm/?qUrlId1={0}")');" value="コピー"/>&nbsp;&nbsp;&nbsp;</td>
		<td class="td" width="50%">$!{messageRegistForm.serverUrl}#q("/user/passwordMailSend/confirm/?qUrlId1={0}")</td>
Kim Gyeongeun committed
104 105
	</tr>
	<tr class="gray">
106 107 108
		<td class="td" width="35%">ワンタイムチケット</td>
		<td class="td" width="15%"><input type="button" onclick='copyToClipboard("%OneTimeTicket%")' value="コピー"/>&nbsp;&nbsp;&nbsp;</td>
		<td class="td" width="50%">%OneTimeTicket%</td>
Kim Gyeongeun committed
109 110 111 112
	</tr>

</table>
    </div>
113
    </div>
Kim Gyeongeun committed
114 115 116 117 118


</body>

</html>