Spaces:
Runtime error
Runtime error
| {% 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 %} | |