Spaces:
Build error
Build error
Commit
·
60c2a36
1
Parent(s):
083ef63
Create templates/index.html
Browse files- templates/index.html +15 -0
templates/index.html
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html>
|
2 |
+
<head>
|
3 |
+
<title>Content Quality Detection</title>
|
4 |
+
</head>
|
5 |
+
<body>
|
6 |
+
<h1>Content Quality Detection</h1>
|
7 |
+
<form method="post">
|
8 |
+
<textarea name="content" rows="10" cols="30"></textarea><br><br>
|
9 |
+
<input type="submit" value="Submit">
|
10 |
+
</form>
|
11 |
+
{% if content_quality %}
|
12 |
+
<p>Content Quality: {{ content_quality }}</p>
|
13 |
+
{% endif %}
|
14 |
+
</body>
|
15 |
+
</html>
|