trying to get search working

This commit is contained in:
Dorian Wood 2024-09-14 18:59:45 -04:00
parent 656155eb4e
commit 76fbc426d0
2 changed files with 7 additions and 3 deletions

View File

@ -11,3 +11,7 @@ figure > p {
margin-top: 0rem; margin-top: 0rem;
margin-bottom: 0rem; margin-bottom: 0rem;
} }
nav > ul {
list-style-type: none;
}

View File

@ -15,17 +15,17 @@
</div> </div>
<form method="get" action="{% url "search_results" %}"> <form method="get" action="{% url "search_results" %}">
<div > <div class="field">
<label >{{ form.instance.label }}</label> <label >{{ form.instance.label }}</label>
<div > <div >
<input type="search" name="q" id="q" > <input class="input" type="search" name="q" id="q" >
<span > <span >
<i ></i> <i ></i>
</span> </span>
</div> </div>
</div> </div>
<div > <div class="field">
<input type="submit" value="Search" > <input type="submit" value="Search" >
</div> </div>
</form> </form>