Skip to content
Snippets Groups Projects
index.html 471 B
Newer Older
rxd's avatar
rxd committed
{% extends "base.html" %}

{% block body %}
rxd's avatar
rxd committed
<div class="card index-card" style="margin: 20rem;">
    <div class="card-header">Your next Viral Meme starts here...</div>
    <div class="card-body">
        <div class="form-center">
            <form action="/search" method="GET">
                <input type="text" value="{{ query }}" name="q" />
                <input type="submit" value="Search"/>
            </form>  
        </div>
    </div>
</div>

rxd's avatar
rxd committed
{% endblock %}