国内流行的内容管理系统(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.

67 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="table maintable table-borderless mt-3 mb-3">
  16. <tr>
  17. <td height="36" bgcolor="#f8f8f8">
  18. <table cellpadding="0" cellspacing="0">
  19. <tr>
  20. <td>关键词:</td>
  21. <td><input name="keyword" type="text" id="keyword" style="margin-right:10px;width:260px"></td>
  22. <td>用户:</td>
  23. <td><input name="username" type="text" id="username" style="margin-right:10px;width:260px"></td>
  24. <td>
  25. <select name="folder" id="folder" style="width:160px">
  26. <option value="inbox">收件箱</option>
  27. <option value="outbox">发件箱</option>
  28. </select>
  29. </td>
  30. <td><button type="submit" class="btn btn-success btn-sm">搜索</button></td>
  31. </tr>
  32. </table>
  33. </td>
  34. </tr>
  35. </table>
  36. </form>
  37. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="table maintable">
  38. <tr>
  39. <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>
  40. </tr>
  41. <tr>
  42. <td colspan="7">
  43. <form id="postall" method="post" action="member_pmone.php">
  44. <input name="action" type="hidden" value="post">
  45. <table width="100%" cellpadding="1" cellspacing="1">
  46. <tr>
  47. <td width="260" height="26">发送到:</td>
  48. <td height="26"><input name="msgtoid" type="text" class="text" value="<?php echo empty($touid)? '' : $touid?>" style="width:260px"> 填写用户登录的ID(网址uid=后面跟着的ID)</td>
  49. </tr>
  50. <tr>
  51. <td height="26">标题:</td>
  52. <td height="26"><input name="subject" type="text" id="subject" class="company_manage_form_label" style="width:260px">(标题少于70个字符内)</td>
  53. </tr>
  54. <tr>
  55. <td height="26"><label for="pm_textarea">内容:</label></td>
  56. <td><textarea name="message" id="message" class="company_manage_form_label1" style="width:360px;height:50px"></textarea>(1000个字符以内)</td>
  57. </tr>
  58. <tr>
  59. <td colspan="2" align="center" class="py-3"><input type="submit" value="提交" class="button01"></td>
  60. </tr>
  61. </table>
  62. </form>
  63. </td>
  64. </tr>
  65. </table>
  66. </body>
  67. </html>