form_not_exist.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{{ title }}</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. </head>
  8. <script>
  9. </script>
  10. <style>
  11. .input-cond-delete {
  12. background: #E43030;
  13. border: 1px solid #CFCFCF;
  14. box-sizing: border-box;
  15. border-radius: 5px;
  16. margin-left: 5px;
  17. width: auto;
  18. height: 33px;
  19. font-size: 16px;
  20. text-align: center;
  21. line-height: 16px;
  22. color: #FFFFFF;
  23. }
  24. .input-cond-add {
  25. background: #008CBA;
  26. border: 1px solid #CFCFCF;
  27. box-sizing: border-box;
  28. border-radius: 5px;
  29. margin-left: 5px;
  30. width: auto;
  31. /* width: 65px; */
  32. height: 33px;
  33. font-size: 16px;
  34. text-align: center;
  35. line-height: 16px;
  36. color: #FFFFFF;
  37. }
  38. .input-cond-action {
  39. background: #FFBD00;
  40. /* #6BF178 #53DD6C #FFBD00*/
  41. border: 1px solid #CFCFCF;
  42. box-sizing: border-box;
  43. border-radius: 5px;
  44. margin-left: 5px;
  45. width: auto;
  46. height: 33px;
  47. font-size: 16px;
  48. text-align: center;
  49. line-height: 16px;
  50. color: #000000;
  51. font-weight: bold;
  52. }
  53. .table-tr-title {
  54. background-color:rgb(0, 131, 72);
  55. color: #FFFFFF;
  56. font-weight: bold;
  57. }
  58. .table-tr-data {
  59. background-color:rgb(236, 247, 242);
  60. }
  61. .table-tr-newdata {
  62. background-color:rgb(245, 245, 245);
  63. }
  64. </style>
  65. <body>
  66. <div id="ERP_header">
  67. <!-- 匯入共同使用的 header.html 內容 -->
  68. {% include 'ERP_header.html' %}
  69. </div>
  70. <center><h6 style="margin: 20px;">無此表單</h6></center>
  71. </body>
  72. </html>