You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
399 B
23 lines
399 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Book Scraper</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Book Scraper</h1>
|
|
|
|
{% if error %}
|
|
<p style="color:red">{{ error }}</p>
|
|
{% endif %}
|
|
|
|
<form method="post">
|
|
<label for="book_url">Enter Book URL:</label><br><br>
|
|
<input type="text" id="book_url" name="book_url" style="width:400px">
|
|
<br><br>
|
|
<button type="submit">Scrape</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|