2020-07-09 01:57:30 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-07-11 20:36:26 +00:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<form action="{% url 'results' %}" method="get" style="padding-top:2em">
|
2020-07-09 01:57:30 +00:00
|
|
|
<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="">
|
2020-07-15 03:34:44 +00:00
|
|
|
<label for="author">Identifier: </label>
|
|
|
|
<input id="identifier" type="text" name="identifier" value="">
|
2020-07-13 01:45:49 +00:00
|
|
|
<button class="waves-effect waves-light btn green accent-4" type="submit">search</button>
|
2020-07-09 01:57:30 +00:00
|
|
|
</form>
|
2020-07-11 20:36:26 +00:00
|
|
|
</div>
|
2020-07-09 01:57:30 +00:00
|
|
|
|
|
|
|
{% endblock %}
|