imseldrith commited on
Commit
385b968
·
1 Parent(s): d339c05

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +15 -0
templates/index.html ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>AI Content Detection</title>
6
+ </head>
7
+ <body>
8
+ <h1>AI Content Detection</h1>
9
+ <form action="/detect" method="post">
10
+ <textarea name="content" rows="10" cols="50"></textarea>
11
+ <br>
12
+ <input type="submit" value="Submit">
13
+ </form>
14
+ </body>
15
+ </html>