noreasonadd.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
  7. <title>Document</title>
  8. <style>
  9. body {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .btn {
  15. background: #047ef8;
  16. padding: 8px 30px;
  17. color: white;
  18. font-size: 18px;
  19. margin-left: 50px;
  20. border-radius: 3px;
  21. cursor: pointer;
  22. user-select: none;
  23. -ms-user-select: none;
  24. }
  25. .btn:hover {
  26. opacity: 0.5;
  27. }
  28. </style>
  29. <!-- <script src="https://unpkg.com/ajax-hook@2.0.3/dist/ajaxhook.min.js">
  30. </script> -->
  31. <script src="./static/js/jquery.min.js"></script>
  32. <script src="./static/js/js.cookie.min.js"></script>
  33. <script
  34. type="text/javascript"
  35. src="./static/js/ntkoofficecontrol.min.js"
  36. ></script>
  37. </head>
  38. <body
  39. onload="init()"
  40. style="text-align: center; height: 100vh; padding: 0px; margin: 0px"
  41. >
  42. <div class="btn">生成函号函件</div>
  43. <form id="myForm" style="display: none">
  44. <input type="text" name="userId" class="userId" />
  45. <input type="text" name="token" class="token" />
  46. <input type="text" name="code" class="code" />
  47. </form>
  48. </body>
  49. </html>