25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!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>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>用户短信管理</title>
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <style>
- .current{border:1px solid #dee2e6;padding:6px;background:#FFFEF4;color:#dc3545}
- </style>
- </head>
- <body>
- <form action="member_pm.php" name="form1" method="get">
- <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="table maintable table-borderless mt-3" style="margin-bottom:10px">
- <tr>
- <td height="36" bgcolor="#f8f8f8">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td>关键词:</td>
- <td><input name="keyword" type="text" id="keyword" style="margin-right:10px;width:260px"></td>
- <td>用户:</td>
- <td><input name="username" type="text" id="username" style="margin-right:10px;width:260px"></td>
- <td>
- <select name="folder" id="folder" style="margin:0 10px;width:160px">
- <option value="inbox">收件箱</option>
- <option value="outbox">发件箱</option>
- </select>
- </td>
- <td><button type="submit" class="btn btn-success btn-sm">搜索</button></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </form>
- <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="table maintable">
- <tr>
- <td height="30" colspan="9" background='../static/web/img/tbg.gif'>
- <a href='member_pm.php'>短信列表</a> <a href='member_pmall.php'>群发短信</a> <span class="current" id="cate_1">单独短信</span>
- </td>
- </tr>
- <tr bgcolor="#ffffff" height="26">
- <td colspan="7" align="left">
- <form id="postall" method="post" action="member_pmone.php">
- <input name="action" type="hidden" value="post">
- <table width="100%" border="0" cellpadding="1" cellspacing="1">
- <tr>
- <td width="13%" height="30" align="right">发送到:</td>
- <td width="87%" height="26"><input name="msgtoid" type="text" class="text" value="<?php echo empty($touid)? '' : $touid?>">填写用户的登录id(网址uid=后面跟的id)</td>
- </tr>
- <tr>
- <td width="13%" height="30" align="right">标题:</td>
- <td width="87%" height="26"><input name="subject" type="text" id="subject" class="company_manage_form_label">标题少于70个字符内</td>
- </tr>
- <tr>
- <td height="12" align="right" valign="top" style="padding-top:5px;"><label for="pm_textarea">内容:</label></td>
- <td height="120"><textarea name="message" id="message" cols="40" rows="5" class="company_manage_form_label1" style="width:360px;height:100px"></textarea>1000个字符以内</td>
- </tr>
- <tr>
- <td height="26" align="right" valign="top"></td>
- <td height="30"><input type="submit" value="提交" class="button01"></td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- <tr bgcolor="#f8f8f8">
- <td height="26" colspan="9" align="center"></td>
- </tr>
- </table>
- </body>
- </html>
|