File size: 471 Bytes
058d869
406a702
 
 
058d869
406a702
 
058d869
 
 
 
406a702
058d869
 
 
 
406a702
058d869
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Text Summarizer</title>
</head>
<body>
    <h1>Article Summarizer</h1>
    <form method="POST" action="/summarize">
        <textarea name="article" rows="10" cols="50" placeholder="Enter your article here..."></textarea><br>
        <input type="submit" value="Summarize">
    </form>
    {% if summary %}
        <h2>Summary:</h2>
        <p>{{ summary }}</p>
    {% endif %}
</body>
</html>