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

43 lines
1.6KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>获取投票代码</title>
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <form name="form1" action="tag_test_action.php" target="stafrm" method="post">
  13. <input type="hidden" name="showsource" value="no">
  14. <input type="hidden" name="_csrf_token" value="<?php echo $GLOBALS['csrf_token'];?>">
  15. <table align="center" class="table maintable my-3">
  16. <tr>
  17. <td bgcolor="#f5f5f5" colspan="2"><a href="vote_main.php">投票管理</a> - 获取投票代码</td>
  18. </tr>
  19. <tr>
  20. <td><textarea name="partcode" id="partcode" class="admin-textarea-xl">{dede:vote id='<?php echo $aid?>'}{/dede:vote}</textarea></td>
  21. <td rowspan="2"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></td>
  22. </tr>
  23. <tr>
  24. <td align="center"><button type="submit" name="Submit" class="btn btn-success btn-sm">提交测试</button></td>
  25. </tr>
  26. <tr>
  27. <td colspan="2"><textarea name="htmlf" id="htmlf" class="admin-textarea-xl"><script src="<?php echo $cfg_basehost.'/data/vote/vote_'.$aid.'.js' ?>"></script></textarea></td>
  28. </tr>
  29. <tr>
  30. <td colspan="2" class="p-0">
  31. <textarea name="htmlf" id="htmlf" class="admin-textarea-xl">
  32. <?php
  33. $vt = new DedeVote($aid);
  34. echo $vt->GetVoteForm();
  35. $vt->Close();
  36. ?>
  37. </textarea>
  38. </td>
  39. </tr>
  40. </table>
  41. </form>
  42. </body>
  43. </html>