squirrel/app/templates/home.html

18 lines
581 B
HTML

{% extends "base.html" %}
{% block content %}
<div id="home-header"></div>
<div id="home-search" class="mx-auto mt-50">
<div class="font-beyond-the-mountains text-8xl text-red-900 text-center">Squirrel</div>
<div class="mx-auto w-1/2 my-10">
<form action="/search" method="get">
<input type="text" name="q" placeholder="Find your nuts..."
class="shadow appearance-none border-slate-600 text-2xl rounded-full w-full py-3 px-5 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
></input>
</form>
</div>
</div>
{% endblock %}