Spaces:
Sleeping
Sleeping
Commit
·
e8f6fe0
1
Parent(s):
9200165
Create templates/index.html
Browse files- templates/index.html +12 -0
templates/index.html
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<html>
|
2 |
+
<head>
|
3 |
+
<title>Paraphrase AI Generated Content</title>
|
4 |
+
</head>
|
5 |
+
<body>
|
6 |
+
<h1>Paraphrase AI Generated Content</h1>
|
7 |
+
<form action="{{ url_for('paraphrase') }}" method="post">
|
8 |
+
<textarea name="text"></textarea><br>
|
9 |
+
<input type="submit" value="Paraphrase">
|
10 |
+
</form>
|
11 |
+
</body>
|
12 |
+
</html>
|