santu24's picture
Create templates/index.html
2c8e564 verified
raw
history blame contribute delete
502 Bytes
{% extends 'base.html' %}
{% block title %}
Home - Amazon Products
{% endblock %}
{% block content %}
<h1>Amazon Product Search</h1>
<p>Type to search for products from our CSV-based database.</p>
<div class="mb-3 position-relative" style="max-width:500px;">
<input type="text" id="search-input" class="form-control" placeholder="Type to search products..." autocomplete="off" />
<div id="autocomplete-results" class="autocomplete-results card" style="display:none;"></div>
</div>
{% endblock %}