index.html - Developer Documentation
Skip to content

index.html

Create an index.html file with the following content:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <title>Trend Prediction</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" type="text/css" media="screen" href="main.css" />
  <script src="main.js"></script>
</head>
<body>
  <div class="container">
    <div class="row">
      <div class="column">
      <br><br>
      <div class="trendPrediction">
        <form id="trendPrediction-form" onsubmit="return false;">
          <div class="form-group">
            <label >Trend Prediction Input - multiple input polynomial regresion without time</label>
            <textarea id="trendPredictionInput" type="text" rows="10" cols="50" minlength=20 name="trendPredictionInput" value=""></textarea>
          </div>
          <button type="submit" onclick="trendPrediction(); return false;">Execute</button>
        </form>
      </div>
      </div>
      <div class="column">
        <br><br>
          <div class="trendPrediction">
            <label >Trend Prediction Output  </label><br>
            <textarea id="trendPrediction-result" type="text" rows="10" cols="50"></textarea>
          </div>
      </div>
    </div>
  </div>
  <div class="container">
    <div class="row">
      <div class="column">
        <br><br>
          <div class="trendPrediction">
            <form id="trendPrediction-form" onsubmit="return false;">
              <div class="form-group">
                <label >Trend Prediction Input - multiple input polynomial regresion with time</label>
                <textarea id="trendPredictionInputTime" type="text" rows="10" cols="50" minlength=20 name="trendPredictionInputTime" value=""></textarea>
              </div>
            <button type="submit" onclick="trendPredictionTime(); return false;">Execute</button>
            </form>
          </div>
      </div>
    </div>
  </div>
</body>
</html>

Except where otherwise noted, content on this site is licensed under the Development License Agreement.


Last update: March 5, 2019