File size: 502 Bytes
2c8e564 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
{% 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 %}
|