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.
22 lines
673 B
22 lines
673 B
<!-- =======================================================================
|
|
File: templates/components/url_input.html
|
|
Purpose:
|
|
Reusable component for entering a book URL.
|
|
Used on landing pages or detail pages.
|
|
======================================================================= -->
|
|
|
|
<form method="POST" action="/start" class="url-form">
|
|
<label for="url" class="url-label">Book URL:</label>
|
|
|
|
<input
|
|
type="text"
|
|
id="url"
|
|
name="url"
|
|
class="url-input"
|
|
placeholder="https://www.piaotia.com/bookinfo/6/6072.html"
|
|
required
|
|
/>
|
|
|
|
<button type="submit" class="btn-primary url-submit">Start Scraping</button>
|
|
</form>
|