index.html¶
Create an index.html file with the following content:
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 | <!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> |
Any questions left?
Except where otherwise noted, content on this site is licensed under the MindSphere Development License Agreement.