AI-Rephraser / templates /index.html
imseldrith's picture
Update templates/index.html
82efbf0
raw
history blame
653 Bytes
<html>
<head>
<title>Paraphrase AI Generated Content</title>
</head>
<body>
<h1>Paraphrase AI Generated Content</h1>
<form action="/" method="post">
<textarea name="text"></textarea><br>
<label for="library">Library:</label>
<select name="library">
<option value="transformers">Transformers</option>
<option value="parrot">Parrot</option>
</select><br>
<input type="submit" value="Paraphrase">
</form>
{% if original_text %}
<h2>Original Text</h2>
<p>{{ original_text }}</p>
<h2>Paraphrased Text</h2>
<p>{{ paraphrased_text }}</p>
{% endif %}
</body>
</html>