Spaces:
Running
Running
<html> | |
<head> | |
<title>Paraphraser Webapp</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
<script> | |
function copyText(text) { | |
navigator.clipboard.writeText(text).then(function() { | |
console.log('Text copied to clipboard'); | |
}, function(err) { | |
console.error('Could not copy text: ', err); | |
}); | |
} | |
</script> | |
</head> | |
<body> | |
<h1>Paraphraser Webapp</h1> | |
<form action="/" method="post"> | |
<textarea name="input_text" rows="10" cols="30"></textarea> | |
<br><br> | |
<input type="checkbox" name="options" value="remove_special_characters">Remove special characters<br> | |
<input type="checkbox" name="options" value="correct_grammar">Correct grammar<br> | |
<input type="checkbox" name="options" value="summarize">Summarize<br> | |
<input type="checkbox" name="options" value="adjust_tone">Adjust tone<br> | |
<br> | |
<input type="submit" value="Paraphrase"> | |
</form> | |
{% if result %} | |
<p>Paraphrased text:</p> | |
<textarea rows="10" cols="30">{{ result }}</textarea> | |
<br><br> | |
<button onclick="copyText()">Copy to Clipboard</button> | |
{% endif %} | |
</body> | |
</html> |