diff options
Diffstat (limited to 'templates/entry.html')
| -rw-r--r-- | templates/entry.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/entry.html b/templates/entry.html new file mode 100644 index 0000000..c54a766 --- /dev/null +++ b/templates/entry.html @@ -0,0 +1,17 @@ +{% extends 'base.html' %} + +{% block body %} + +<h2>{{ the_title }}</h2> + +<form method='POST' action='/search4'> +<table> +<p>Use this form to submit a search request:</p> +<tr><td>Phrase:</td><td><input name='phrase' type='TEXT' width='60'></td></tr> +<tr><td>Letters:</td><td><input name='letters' type='TEXT' value='aeiou'></td></tr> +</table> +<p>When you're ready, click this button:</p> +<p><input value='Do it!' type='SUBMIT'></p> +</form> + +{% endblock %} |
