proof of concept

This commit is contained in:
Bryan Bailey
2019-11-07 10:21:56 -05:00
commit fbcf6769ce
25 changed files with 258 additions and 0 deletions

6
app/templates/index.html Normal file
View File

@@ -0,0 +1,6 @@
<h1>Save All Comics!</h1>
<form action="" method="POST" enctype=multipart/form-data>
{{ form.hidden_tag() }}
{{ form.search(placeholder='Comic URL, eg: https://readallcomics.com/marauders-001-2019/') }}
{{ form.submit() }}
</form>

View File

@@ -0,0 +1,2 @@
<h1>Huzzah! It Worked!</h1>
<a href="{{ url_for('main.index') }}">&laquo; Back to Home</a>