Spaces:
Build error
Build error
Commit
·
f2509e7
1
Parent(s):
f56dfd0
Rename templates/index.html to templates/home.html
Browse files- templates/home.html +13 -0
- templates/index.html +0 -15
templates/home.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Content Quality Detector</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>Content Quality Detector</h1>
|
8 |
+
<form action="/" method="post">
|
9 |
+
<input type="text" name="url" placeholder="Enter blog post URL">
|
10 |
+
<button type="submit">Submit</button>
|
11 |
+
</form>
|
12 |
+
</body>
|
13 |
+
</html>
|
templates/index.html
DELETED
@@ -1,15 +0,0 @@
|
|
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|