huggingface-ppw / templates /summary.html
rrayhka's picture
first commit
c7ec819
raw
history blame
475 Bytes
<!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>