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.
24 lines
715 B
24 lines
715 B
<!-- =======================================================================
|
|
File: templates/home.html
|
|
Purpose:
|
|
New landing page for starting a scrape.
|
|
Does NOT replace existing index.html.
|
|
Uses reusable components (url_input).
|
|
Redirects to /start?url=...
|
|
======================================================================= -->
|
|
|
|
{% extends "layout.html" %} {% block content %}
|
|
|
|
<div class="landing-container">
|
|
<h1 class="landing-title">Start a New Book Scrape</h1>
|
|
|
|
<!-- Reusable URL input component -->
|
|
{% include "components/url_input.html" %}
|
|
|
|
<div class="landing-links">
|
|
<a href="/dashboard">→ Go to Dashboard</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|