12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>{{ title }}</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-
- </head>
- <style>
- .input-cond-delete {
- background: #E43030;
- border: 1px solid #CFCFCF;
- box-sizing: border-box;
- border-radius: 5px;
- margin-left: 5px;
- width: 65px;
- height: 33px;
- font-size: 16px;
- text-align: center;
- line-height: 16px;
- color: #FFFFFF;
- }
- .input-cond-add {
- background: #008CBA;
- border: 1px solid #CFCFCF;
- box-sizing: border-box;
- border-radius: 5px;
- margin-left: 5px;
- width: 65px;
- height: 33px;
- font-size: 16px;
- text-align: center;
- line-height: 16px;
- color: #FFFFFF;
- }
- </style>
- <body>
- <div id="ERP_header">
- <!-- 匯入共同使用的 header.html 內容 -->
- {% include 'ERP_header.html' %}
- </div>
- <div style="text-align: center; padding-top: 100px;">
- <img src="../static/img/ALMIGHTY_RAY.jpg" height="120px" style="padding-right: 50px;">
- <img src="../static/img/SKYAI.jpg" height="120px"><br>
- </div>
-
- <form method="post" action="/login" style="text-align: center; padding-top: 30px; vertical-align: middle; font-size: 18px;">
- 請輸入員工編號 :
- <input type="text" name="user_id" value="" style="height: 25px;">
- <input type="submit" id="user_exist" value="登入">
- </form>
- </body>
- </html>
|