Spaces:
Sleeping
Sleeping
File size: 475 Bytes
c7ec819 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>News Scraper</title>
</head>
<body>
<h1>Web Article Summarizer with Graph Visualization</h1>
<form method="post">
<label for="url">Masukkan URL artikel:</label><br>
<input type="text" id="url" name="url"><br><br>
<input type="submit" value="Generate Summary">
</form>
{% if error %}
<p style="color:red;">{{ error }}</p>
{% endif %}
</body>
</html>
|