sourav36 commited on
Commit
57865aa
1 Parent(s): 2528116

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +28 -0
index.html ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
3
+ <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
4
+ <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
5
+ <!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
6
+ <html>
7
+ <head>
8
+ <meta charset="utf-8">
9
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
10
+ <title>Paragraph Predictor</title>
11
+ <meta name="description" content="">
12
+ <meta name="viewport" content="width=device-width, initial-scale=1">
13
+ <link rel="stylesheet" href="">
14
+ </head>
15
+ <body>
16
+ <!--[if lt IE 7]>
17
+ <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
18
+ <![endif]-->
19
+ <h1>Paragraph Predictor</h1>
20
+ <form method="post" action="/predict">
21
+ <label>Query</label><br>
22
+ <input type="text" name = "query"><br><br>
23
+ <input type="submit" value="predict"><br><br>
24
+ </form>
25
+
26
+ <script src="" async defer></script>
27
+ </body>
28
+ </html>