Skip to content
Snippets Groups Projects
index.html 6.15 KiB
Newer Older
btalhaoui's avatar
btalhaoui committed
<!DOCTYPE html>
<html>
btalhaoui's avatar
btalhaoui committed
   <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
      <link rel="stylesheet" href="theme.css" type="text/css">
   </head>
   <body>
      <nav class="navbar navbar-expand-md bg-primary navbar-dark">
         <div class="container">
            <a class="navbar-brand" href="index.html"><i class="fa d-inline fa-lg fa-line-chart"></i><b>Monitoring</b></a>
            <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbar2SupportedContent" aria-controls="navbar2SupportedContent" aria-expanded="false"
               aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button>
            <div class="collapse navbar-collapse text-center justify-content-end" id="navbar2SupportedContent">
               <ul class="navbar-nav">
                  <li class="nav-item">
                     <a class="nav-link" href="OrganizationsList.html"><i class="fa d-inline fa-lg fa-bookmark-o"></i>&nbsp;My organizations</a>
                  </li>
                  <li class="nav-item">
                     <a class="nav-link" href="#"><i class="fa d-inline fa-lg fa-envelope-o"></i>&nbsp;Notifications</a>
                  </li>
               </ul>
btalhaoui's avatar
btalhaoui committed
            </div>
btalhaoui's avatar
btalhaoui committed
         </div>
      </nav>
      <div class="py-5">
         <div class="container bg-light">
            <div class="row bg-primary">
               <div class="col-md-12">
                  <h3 class="display-5">Dashboard</h3>
               </div>
btalhaoui's avatar
btalhaoui committed
            </div>
btalhaoui's avatar
btalhaoui committed
            <div class="row my-1">
               <div class="col-md-12">
                  <div class="card border">
                     <div class="card-header"> Organization 1<a class="text-dark" href="OrganizationManagement.html"><i class="pull-right fa fa-lg fa-cog"></i></a></div>
                     <div class="card-body">
                        <table class="table">
                           <thead>
                              <tr>
                                 <th scope="col">Server</th>
                                 <th scope="col">Disk</th>
                                 <th scope="col">Reboot</th>
                                 <th scope="col">Updates</th>
                                 <th scope="col"></th>
                              </tr>
                           </thead>
                           <tbody>
                              <tr>
                                 <th scope="row">01</th>
                                 <td>OK</td>
                                 <td>OK</td>
                                 <td>OK</td>
                                 <td><a class="btn btn-secondary" href="server.html">Go to details</a></td>
                              </tr>
                              <tr>
                                 <th scope="row">02</th>
                                 <td><10%</td>
                                 <td>Reboot required</td>
                                 <td>OK</td>
                                 <td><a class="btn btn-secondary" href="server.html">Go to details</a></td>
                              </tr>
                           </tbody>
                        </table>
                     </div>
                  </div>
               </div>
               <div class="col-md-12">
                  <div class="card">
                     <div class="card-header"> Organization 2<i class="pull-right fa fa-lg fa-cog"></i></div>
                     <div class="card-body">
                        <table class="table">
                           <thead>
                              <tr>
                                 <th scope="col">Server</th>
                                 <th scope="col">Disk</th>
                                 <th scope="col">Reboot</th>
                                 <th scope="col">Updates</th>
                                 <th scope="col"></th>
                              </tr>
                           </thead>
                           <tbody>
                              <tr>
                                 <th scope="row">01</th>
                                 <td>OK</td>
                                 <td>OK</td>
                                 <td>OK</td>
                                 <td><a class="btn btn-secondary" href="server.html">Go to details</a></td>
                              </tr>
                              <tr>
                                 <th scope="row">02</th>
                                 <td><10%</td>
                                 <td>Reboot required</td>
                                 <td>OK</td>
                                 <td><a class="btn btn-secondary" href="server.html">Go to details</a></td>
                              </tr>
                           </tbody>
                        </table>
                     </div>
                  </div>
               </div>
btalhaoui's avatar
btalhaoui committed
            </div>
btalhaoui's avatar
btalhaoui committed
         </div>
btalhaoui's avatar
btalhaoui committed
      </div>
btalhaoui's avatar
btalhaoui committed
      <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
      <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
      <pingendo onclick="window.open('https://pingendo.com/', '_blank')" style="cursor:pointer;position: fixed;bottom: 10px;right:10px;padding:4px;background-color: #00b0eb;border-radius: 8px; width:180px;display:flex;flex-direction:row;align-items:center;justify-content:center;font-size:14px;color:white">Made with Pingendo&nbsp;&nbsp;
         <img src="https://pingendo.com/site-assets/Pingendo_logo_big.png" class="d-block" alt="Pingendo logo" height="16">
      </pingendo>
   </body>
btalhaoui's avatar
btalhaoui committed
</html>