Guest User

Untitled

a guest
Nov 19th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 6.08 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6.     <meta name="description" content="">
  7.     <meta name="author" content="">
  8.  
  9.  
  10.     <title>Sam's Surf Report</title>
  11.  
  12.     <!-- Bootstrap core CSS -->
  13.     <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
  14.  
  15.     <!-- Custom styles for this template -->
  16.     <link href="dashboard.css" rel="stylesheet">
  17.   </head>
  18.  
  19.   <body>
  20.     <nav class="navbar navbar-dark fixed-top bg-dark flex-md-nowrap p-0 shadow">
  21.       <a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">Sam's Surf Report</a>
  22.   <p class="text-info">AI should you surf predidiction</p>
  23.       <ul class="navbar-nav px-3">
  24.         <li class="nav-item text-nowrap">
  25.           <a class="nav-link" href="#">This is in development and not fully working currently build 0.1
  26.  
  27. </a>
  28.         </li>
  29.       </ul>
  30.     </nav>
  31.  
  32.     <div class="container-fluid">
  33.       <div class="row">
  34.         <nav class="col-md-2 d-none d-md-block bg-light sidebar">
  35.           <div class="sidebar-sticky">
  36.             <ul class="nav flex-column">
  37.               <li class="nav-item">
  38.                 <a class="nav-link active" href="#">
  39.                   <span data-feather="home"></span>
  40.                   Dashboard <span class="sr-only">(current)</span>
  41.                 </a>
  42.               </li>
  43.               <li class="nav-item">
  44.                 <a class="nav-link" href="#">
  45.                   <span data-feather="file"></span>
  46.                   Orders
  47.                 </a>
  48.               </li>
  49.              
  50.             </ul>
  51.  
  52.            
  53.         </nav>
  54.  
  55.         <main role="main" class="col-md-9 ml-sm-auto col-lg-10 px-4">
  56.           <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
  57.             <h1 class="h2">Dashboard</h1>
  58.             <div class="btn-toolbar mb-2 mb-md-0">
  59.               <div class="btn-group mr-2">
  60.                 <button class="btn btn-sm btn-outline-secondary">Share</button>
  61.                 <button class="btn btn-sm btn-outline-secondary">Export</button>
  62.               </div>
  63.               <button class="btn btn-sm btn-outline-secondary dropdown-toggle">
  64.                 <span data-feather="calendar"></span>
  65.                 This week
  66.               </button>
  67.             </div>
  68.           </div>
  69.  
  70.           <!-- <canvas class="my-4 w-100" id="myChart" width="900" height="380"></canvas> -->
  71.  
  72.           <h2>Section title</h2>
  73.           <div class="table-responsive">
  74.             <table class="table table-striped table-sm">
  75.               <thead>
  76.                 <tr>
  77.                   <th>Days from Today</th>
  78.                   <th>Avrage Wave Height</th>
  79.                   <th>Star Rating</th>
  80.                   <th>Wave Intervals</th>
  81.                   <th>Tempreture</th>
  82.  
  83.                 </tr>
  84.               </thead>
  85.               <tbody>
  86.                 <tr>
  87.                   <td>1</td>
  88.                   <td>1 ft</td>
  89.                   <td>  <span data-feather="target"></span>  <span data-feather="disc"></span></td>
  90.                   <td>9 </td>
  91.                   <td>12</td>
  92.                 </tr>
  93.  
  94.                
  95.               </tbody>
  96.             </table>
  97.           </div>
  98.           <h1>
  99.   model
  100. </h1>
  101. <!-- Button trigger modal -->
  102. <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
  103.   Launch demo modal
  104. </button>
  105.  
  106. <!-- Modal -->
  107. <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  108.   <div class="modal-dialog" role="document">
  109.     <div class="modal-content">
  110.       <div class="modal-header">
  111.         <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
  112.         <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  113.           <span aria-hidden="true">&times;</span>
  114.         </button>
  115.       </div>
  116.       <div class="modal-body">
  117.         ...
  118.       </div>
  119.       <div class="modal-footer">
  120.         <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
  121.         <button type="button" class="btn btn-primary">Save changes</button>
  122.       </div>
  123.     </div>
  124.   </div>
  125. </div>
  126.         </main>
  127.       </div>
  128.     </div>
  129.  
  130.  
  131.  
  132.  
  133.     <!-- Bootstrap core JavaScript
  134.    ================================================== -->
  135.     <!-- Placed at the end of the document so the pages load faster -->
  136.     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
  137.     <script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
  138.     <script src="../../assets/js/vendor/popper.min.js"></script>
  139.     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
  140.  
  141.     <!-- Icons -->
  142.     <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script>
  143.     <script>
  144.       feather.replace()
  145.     </script>
  146.  
  147.     <!-- Graphs -->
  148.     <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
  149.     <script>
  150.       var ctx = document.getElementById("myChart");
  151.       var myChart = new Chart(ctx, {
  152.         type: 'line',
  153.         data: {
  154.           labels: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
  155.           datasets: [{
  156.             data: [15339, 21345, 18483, 24003, 23489, 24092, 12034],
  157.             lineTension: 0,
  158.             backgroundColor: 'transparent',
  159.             borderColor: '#007bff',
  160.             borderWidth: 4,
  161.             pointBackgroundColor: '#007bff'
  162.           }]
  163.         },
  164.         options: {
  165.           scales: {
  166.             yAxes: [{
  167.               ticks: {
  168.                 beginAtZero: false
  169.               }
  170.             }]
  171.           },
  172.           legend: {
  173.             display: false,
  174.           }
  175.         }
  176.       });
  177.     </script>
  178.   </body>
  179. </html>
Add Comment
Please, Sign In to add comment