diff options
| author | Willem Renes <wrenes@raudkembingur.nl> | 2021-05-12 00:32:14 +0200 |
|---|---|---|
| committer | Willem Renes <wrenes@raudkembingur.nl> | 2021-05-12 00:32:14 +0200 |
| commit | d0f08ed8699a2eda867bdab7c89628132bf90a3e (patch) | |
| tree | d04324a4b23bd2940e74b735cb51c475a1cecf94 /templates/entry.html | |
| parent | f26f201416c0467bccef59a6336af56fc0f3e1ac (diff) | |
| download | vsearchweb-d0f08ed8699a2eda867bdab7c89628132bf90a3e.tar.gz vsearchweb-d0f08ed8699a2eda867bdab7c89628132bf90a3e.zip | |
adding the initial files
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 %} |
