Commit ·
765f1c4
1
Parent(s): 66bb362
Create result.html
Browse files- templates/result.html +11 -0
templates/result.html
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<title>AI Content Detection Result</title>
|
| 6 |
+
</head>
|
| 7 |
+
<body>
|
| 8 |
+
<h1>AI Content Detection Result</h1>
|
| 9 |
+
<p>Result: {{ result }}</p>
|
| 10 |
+
</body>
|
| 11 |
+
</html>
|