15 lines
		
	
	
		
			412 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			412 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="">
 | 
						|
    <input type="submit" value="search">
 | 
						|
</form>
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %} |