list_0match_202105.html 2.37 KB
Newer Older
Jung Kwangkyu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
<!DOCTYPE html>
<html lang="ja-JP">

<head>
    <meta charset="utf-8">
    <title>作業一覧(0マッチ)</title>
    <meta name="robots" content="index, follow">
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <meta name="description" content="eXFrame">

    <link rel="stylesheet" type="text/css" href="css/style_202104.css">
    <link rel="stylesheet" type="text/css" href="css/app.css">
    <link rel="stylesheet" type="text/css" href="css/fontawesome_relative_path.css">
    <script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
</head>

<body>
  <?php include('common/simple_header.html');?>
    <div class="container-fluid mb-5">
        <main>
            <h1 class="sr-only">作業一覧</h1>
            <div class="bg-lightblue wide-wrap">
                <div class="container-fluid py-3">
                    <form>
                        <!-- 作業名検索 -->
                        <div class="w-99 w-md-50 w-lg-30 mr-2 mb-2">
                            <label for="job-title" class="sr-only">search</label>
                            <input type="text" class="form-control" id="job-title" placeholder="作業名を入力">
                        </div>
                        <div class="d-flex">
                          <!-- 作業ステータス -->
                          <div class="form-group mb-2 w-99 w-md-50 w-lg-30 mr-3">
                              <select class="form-control" id="tast-status">
                                  <option>すべて</option>
                                  <option>進行中</option>
                                  <option>完了</option>
                              </select>
                          </div>
                          <button type="submit" class="btn btn-outline-primary fs-8 py-2 mb-2 text-nowrap flex-shrink-1">検索</button>
                        </div>
                    </form>
                </div>
            </div>
            <section>
              <div class="my-3 text-center font-weight-bold">
                登録されている作業はありません
              </div>
            </section>
        </main>
    </div>
    <script type="text/javascript" src="js/app_202104.js" defer></script>
    <script type="text/javascript" src="js/app.js" defer></script>
</body>

</html>