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.
kmftools/bookscraper/templates/index.html

35 lines
995 B

<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<title>BookScraper</title>
<style>
body { font-family: Arial, sans-serif; padding: 40px; max-width: 600px; margin: auto; }
h1 { margin-bottom: 20px; }
input[type="text"] {
width: 100%; padding: 12px; font-size: 16px;
border: 1px solid #ccc; border-radius: 6px;
}
button {
margin-top: 20px;
padding: 12px 20px;
background: #007bff; color: white;
border: none; border-radius: 6px;
font-size: 16px; cursor: pointer;
}
button:hover { background: #0056b3; }
</style>
</head>
<body>
<h1>BookScraper WebGUI</h1>
<form action="/start" method="POST">
<label for="url">Geef een boek-URL op:</label><br><br>
<input type="text" id="url" name="url" placeholder="https://example.com/book/12345" required>
<button type="submit">Start Scraping</button>
</form>
</body>
</html>