[204464d] | 1 | <!DOCTYPE html>
|
---|
[044bd76] | 2 | <html>
|
---|
[204464d] | 3 | <head>
|
---|
[a436340] | 4 | <title>Schedlr</title>
|
---|
[044bd76] | 5 |
|
---|
| 6 | <meta charset="utf-8"/>
|
---|
| 7 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
---|
| 8 |
|
---|
[9280859] | 9 | <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
|
---|
| 10 | <!-- Google Fonts -->
|
---|
| 11 | <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
|
---|
| 12 | <!-- MDB -->
|
---|
| 13 | <link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/5.0.0/mdb.min.css" rel="stylesheet" />
|
---|
[044bd76] | 14 |
|
---|
| 15 | <link href='css/fullcalendar.css' rel='stylesheet'/>
|
---|
| 16 | <link href='css/fullcalendar.print.css' rel='stylesheet' media='print'/>
|
---|
[9280859] | 17 | <link href="css/homepage.css" rel="stylesheet" />
|
---|
[a436340] | 18 | <link href="css/headers.css" rel="stylesheet">
|
---|
[204464d] | 19 | </head>
|
---|
| 20 | <body>
|
---|
[a436340] | 21 |
|
---|
| 22 | <!-- Navbar start -->
|
---|
| 23 | <header class="p-3 mb-3 border-bottom">
|
---|
| 24 | <div class="container">
|
---|
| 25 | <div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
---|
| 26 | <a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-dark text-decoration-none">
|
---|
| 27 | <svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg>
|
---|
| 28 | </a>
|
---|
| 29 |
|
---|
| 30 | <ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
|
---|
| 31 | <li><a href="#" class="nav-link px-2 link-secondary">Overview</a></li>
|
---|
| 32 | <li><a href="#" class="nav-link px-2 link-dark">Inventory</a></li>
|
---|
| 33 | <li><a href="#" class="nav-link px-2 link-dark">Customers</a></li>
|
---|
| 34 | <li><a href="#" class="nav-link px-2 link-dark">Products</a></li>
|
---|
| 35 | </ul>
|
---|
| 36 |
|
---|
| 37 | <form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
|
---|
| 38 | <input type="search" class="form-control" placeholder="Search..." aria-label="Search">
|
---|
| 39 | </form>
|
---|
| 40 |
|
---|
| 41 | <div class="dropdown text-end">
|
---|
| 42 | <a href="#" class="d-block link-dark text-decoration-none dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
|
---|
| 43 | <img src="https://github.com/mdo.png" alt="mdo" width="32" height="32" class="rounded-circle">
|
---|
| 44 | </a>
|
---|
| 45 | <ul class="dropdown-menu text-small">
|
---|
| 46 | <li><a class="dropdown-item" href="#">New project...</a></li>
|
---|
| 47 | <li><a class="dropdown-item" href="#">Settings</a></li>
|
---|
| 48 | <li><a class="dropdown-item" href="#">Profile</a></li>
|
---|
| 49 | <li><hr class="dropdown-divider"></li>
|
---|
| 50 | <li><a class="dropdown-item" href="#">Sign out</a></li>
|
---|
| 51 | </ul>
|
---|
| 52 | </div>
|
---|
| 53 | </div>
|
---|
| 54 | </div>
|
---|
| 55 | </header>
|
---|
| 56 | <!-- Navbar end -->
|
---|
| 57 |
|
---|
[044bd76] | 58 | <div id='wrap'>
|
---|
| 59 | <div id='calendar'></div>
|
---|
| 60 | <div style='clear:both'></div>
|
---|
| 61 | </div>
|
---|
[9280859] | 62 |
|
---|
| 63 | <div class="">
|
---|
| 64 | <div class="card">
|
---|
| 65 | <div class="card-body py-5 px-md-5">
|
---|
| 66 | <div>
|
---|
| 67 | <label for="student-birth-date">Date of search:</label>
|
---|
[cc52b09] | 68 | <input type="date" id="student-birth-date"/>
|
---|
[9280859] | 69 | </div>
|
---|
| 70 | <div>
|
---|
[cc52b09] | 71 | <button type="submit" class="button" id="search">Search</button>
|
---|
[9280859] | 72 | </div>
|
---|
| 73 | </div>
|
---|
| 74 | </div>
|
---|
| 75 | </div>
|
---|
[044bd76] | 76 | <script src='js/jquery-1.10.2.js' type="text/javascript"></script>
|
---|
| 77 | <script src='js/jquery-ui.custom.min.js' type="text/javascript"></script>
|
---|
| 78 | <script src='js/fullcalendar.js' type="text/javascript"></script>
|
---|
| 79 | <script src="js/homepage.js" type="text/javascript"></script>
|
---|
[a436340] | 80 | <script src="js/bootstrap.bundle.min.js"></script>
|
---|
[204464d] | 81 | </body>
|
---|
[044bd76] | 82 | </html>
|
---|