calibre-web-companion/CalibreWebCompanion/library/templates/search.html

15 lines
465 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="container">
<form action="{% url 'results' %}" method="get" style="padding-top:2em">
<label for="title">Title: </label>
<input id="title" type="text" name="title" value="">
<label for="author">Author: </label>
<input id="author" type="text" name="author" value="">
<button class="waves-effect waves-light btn green accent-4" type="submit">search</button>
</form>
</div>
{% endblock %}