<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <link rel="stylesheet" href="css/bootstrap.min.css">
  <script src="js/bootstrap.min.js"></script>
  <meta charset="UTF-8">
  <title>考勤</title>
</head>
<body>

<form enctype="multipart/form-data" method="post" action="/upload">
  <div class="container" style="padding-top: 10%;">
    <div class="row align-items-center">
      <table class="table table-bordered">
        <tbody>

        <tr>
          <th scope="row">企业微信上下班打卡记录:</th>
          <td><input type="file" name="file"/></td>
        </tr>
        <tr>
          <th scope="row">企业微信外出打卡记录:</th>
          <td><input type="file" name="file"/></td>
        </tr>
        <tr>
          <th scope="row">企业微信加班审批记录:</th>
          <td><input type="file" name="file"/></td>
        </tr>
        <tr>
          <th scope="row">打卡机考勤记录:</th>
          <td><input type="file" name="file"/></td>
        </tr>
        <tr>
          <th scope="row">钉钉打卡记录:</th>
          <td><input type="file" name="file"/></td>
        </tr>
        </tbody>
      </table>

      <button type="submit" class="btn btn-outline-primary btn-lg btn-block">生成考勤记录</button>

    </div>
  </div>
</form>
</body>
</html>