国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.9KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="<?php echo $cfg_soft_lang; ?>">
  5. <title>用户短信管理</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. <style>
  10. .current{border:1px solid #dee2e6;padding:6px;background:#FFFEF4;color:#dc3545}
  11. </style>
  12. </head>
  13. <body>
  14. <form action="member_pm.php" name="form1" method="get">
  15. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="mt-3 mb-3" style="border:1px solid #dee2e6">
  16. <tr>
  17. <td height="36" bgcolor="#f8f8f8">
  18. <table cellpadding="0" cellspacing="0">
  19. <tr>
  20. <td width="280" align="center"><input name="keyword" type="text" id="keyword" placeholder="请输入关键词" style="width:260px"></td>
  21. <td width="270"><input name="username" type="text" id="username" placeholder="请输入用户名" style="width:260px"></td>
  22. <td width="170">
  23. <select name="folder" id="folder" style="width:160px">
  24. <option value="inbox">收件箱</option>
  25. <option value="outbox">发件箱</option>
  26. </select>
  27. </td>
  28. <td><button type="submit" class="btn btn-success btn-sm">搜索</button></td>
  29. </tr>
  30. </table>
  31. </td>
  32. </tr>
  33. </table>
  34. </form>
  35. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="table maintable">
  36. <tr>
  37. <td height="26" colspan="7" 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>
  38. </tr>
  39. <tr>
  40. <td colspan="7">
  41. <form id="postall" method="post" action="member_pmone.php">
  42. <input name="action" type="hidden" value="post">
  43. <table width="100%" cellpadding="1" cellspacing="1">
  44. <tr>
  45. <td width="260" height="26">发送到:</td>
  46. <td height="26"><input name="msgtoid" type="text" class="text" value="<?php echo empty($touid)? '' : $touid?>" style="width:260px"> 填写用户登录的ID(网址uid=后面跟着的ID)</td>
  47. </tr>
  48. <tr>
  49. <td height="26">标题:</td>
  50. <td height="26"><input name="subject" type="text" id="subject" class="company_manage_form_label" style="width:260px">(标题少于70个字符内)</td>
  51. </tr>
  52. <tr>
  53. <td height="26"><label for="pm_textarea">内容:</label></td>
  54. <td><textarea name="message" id="message" class="company_manage_form_label1" style="width:360px;height:50px"></textarea>(1000个字符以内)</td>
  55. </tr>
  56. <tr>
  57. <td colspan="2" align="center" class="py-3"><input type="submit" value="提交" class="button01"></td>
  58. </tr>
  59. </table>
  60. </form>
  61. </td>
  62. </tr>
  63. </table>
  64. </body>
  65. </html>