login.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <style>
  9. .input-cond-delete {
  10. background: #E43030;
  11. border: 1px solid #CFCFCF;
  12. box-sizing: border-box;
  13. border-radius: 5px;
  14. margin-left: 5px;
  15. width: 65px;
  16. height: 33px;
  17. font-size: 16px;
  18. text-align: center;
  19. line-height: 16px;
  20. color: #FFFFFF;
  21. }
  22. .input-cond-add {
  23. background: #008CBA;
  24. border: 1px solid #CFCFCF;
  25. box-sizing: border-box;
  26. border-radius: 5px;
  27. margin-left: 5px;
  28. width: 65px;
  29. height: 33px;
  30. font-size: 16px;
  31. text-align: center;
  32. line-height: 16px;
  33. color: #FFFFFF;
  34. }
  35. </style>
  36. <body>
  37. <div id="ERP_header">
  38. <!-- 匯入共同使用的 header.html 內容 -->
  39. {% include 'ERP_header.html' %}
  40. </div>
  41. <div style="text-align: center; padding-top: 100px;">
  42. <img src="../static/img/ALMIGHTY_RAY.jpg" height="120px" style="padding-right: 50px;">
  43. <img src="../static/img/SKYAI.jpg" height="120px"><br>
  44. </div>
  45. <form method="post" action="/login" style="text-align: center; padding-top: 30px; vertical-align: middle; font-size: 18px;">
  46. 請輸入員工編號 :
  47. <input type="text" name="user_id" value="" style="height: 25px;">
  48. <input type="submit" id="user_exist" value="登入">
  49. </form>
  50. </body>
  51. </html>