?? add_user.php
字號:
<?
include_once("inc/auth.php");
?>
<html>
<head>
<title>邀請更多參會人員</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script Language="JavaScript">
function CheckForm()
{
if(document.form1.TO_ID.value=="")
{ alert("請添加參會人員!");
return (false);
}
if(document.form1.CONTENT.value=="")
{ alert("會議邀請短信內容不能為空!");
return (false);
}
return (true);
}
function clear_user()
{
document.form1.TO_NAME.value="";
document.form1.TO_ID.value="";
}
function LoadWindow()
{
URL="/module/user_select";
loc_x=document.body.scrollLeft+event.clientX-event.offsetX-100;
loc_y=document.body.scrollTop+event.clientY-event.offsetY+170;
window.showModalDialog(URL,self,"edge:raised;scroll:0;status:0;help:0;resizable:1;dialogWidth:400px;dialogHeight:350px;dialogTop:"+loc_y+"px;dialogLeft:"+loc_x+"px");
// window.open(URL,null,"height=400,width=550,status=1,toolbar=no,menubar=no,location=no,scrollbars=yes,top=150,left=100,resizable=yes");
}
</script>
</head>
<body class="bodycolor" topmargin="5" onload="document.form1.CONTENT.focus();">
<table border="0" width=500" align=center cellpadding="5" cellspacing="1" bgcolor="#000000" class="small">
<form action="add_user_submit.php" method="post" name="form1" onsubmit="return CheckForm();">
<tr>
<td class="TableHeader">
邀請更多參會人員
</td>
</tr>
<tr>
<td class="TableData">
<input type="hidden" name="TO_ID" value="<?=$TO_ID?>">
<textarea cols=50 name="TO_NAME" rows="3" class="BigStatic" wrap="yes" readonly><?=$TO_NAME?></textarea>
<input type="button" value="添 加" class="SmallButton" onClick="LoadWindow()" title="添加參會人員" name="button">
<input type="button" value="清 空" class="SmallButton" onClick="clear_user()" title="清空參會人員" name="button">
</td>
</tr>
<tr>
<td class="TableHeader">
會議邀請短信內容
</td>
</tr>
<tr>
<td class="TableData">
<textarea cols=70 name="CONTENT" rows="2" class="BigInput" wrap="on">請參加[<?=$LOGIN_USER_NAME?>]主持的視頻會議,點擊短信鏈接進入。</textarea>
</td>
</tr>
<tr align="center" class="TableControl">
<td colspan="2" nowrap>
<input type="hidden" value="<?=$SMS_ID?>" name="SMS_ID">
<input type="submit" value="發出邀請" class="BigButton">
</td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -