34 lines
2.3 KiB
HTML
34 lines
2.3 KiB
HTML
{# templates/pages/home.html #}
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="h-lvh place-content-center">
|
|
<form class="max-w-lg mx-auto flex-auto mb-14 w-5/6" method="POST" action="/search">
|
|
<div class="flex">
|
|
<label for="search-dropdown" class="mb-2 text-sm font-medium text-gray-900 sr-only dark:text-white">Your st</label>
|
|
<!-- Replace button with select for native dropdown -->
|
|
<select name="category" class="flex-shrink-0 z-10 py-2.5 px-4 text-sm font-medium text-center text-gray-900 bg-gray-100 border border-gray-300 rounded-s-lg hover:bg-gray-200 focus:ring-4 focus:outline-none focus:ring-gray-100 dark:bg-gray-700 dark:hover:bg-gray-600 dark:focus:ring-gray-700 dark:text-white dark:border-gray-600">
|
|
<option value="Artists">Artists</option>
|
|
<option value="Playlist">Playlist</option>
|
|
<option value="Song">Song</option>
|
|
<option value="Albums">Albums</option>
|
|
</select>
|
|
|
|
<div class="relative w-full">
|
|
<input type="search" name="query" id="search-dropdown"
|
|
class="block p-2.5 w-full z-20 text-sm text-gray-900 bg-gray-50 rounded-e-lg border-s-gray-50 border-s-2 border border-gray-300 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:border-s-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:border-blue-500"
|
|
placeholder="Search Mockups, Logos, Design Templates..." required />
|
|
<button type="submit"
|
|
class="absolute top-0 end-0 p-2.5 text-sm font-medium h-full text-white bg-blue-700 rounded-e-lg border border-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">
|
|
<svg class="w-4 h-4" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none"
|
|
viewBox="0 0 20 20">
|
|
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="m19 19-4-4m0-7A7 7 0 1 1 1 8a7 7 0 0 1 14 0Z" />
|
|
</svg>
|
|
<span class="sr-only">Search</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |