santu24 commited on
Commit
2c8e564
·
verified ·
1 Parent(s): 6fc616d

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +14 -0
templates/index.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% extends 'base.html' %}
2
+
3
+ {% block title %}
4
+ Home - Amazon Products
5
+ {% endblock %}
6
+
7
+ {% block content %}
8
+ <h1>Amazon Product Search</h1>
9
+ <p>Type to search for products from our CSV-based database.</p>
10
+ <div class="mb-3 position-relative" style="max-width:500px;">
11
+ <input type="text" id="search-input" class="form-control" placeholder="Type to search products..." autocomplete="off" />
12
+ <div id="autocomplete-results" class="autocomplete-results card" style="display:none;"></div>
13
+ </div>
14
+ {% endblock %}