refactor with blueprints

This commit is contained in:
2021-01-30 06:36:25 -08:00
parent c2ccb01aab
commit 29afdd025c
41 changed files with 696 additions and 607 deletions

View File

@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block content %}
<div class="formContainer">
<h1>{{ title }}</h1>
<form action="" method="post" enctype="multipart/form-data" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.image.label }}<br>
<span class="inputInfo imageInputInfo">
suggest max 3MB
</span><br>
{{ form.image(style="width: 100%; margin-top: 40px;") }}
</p>
<p>{{ form.submit() }}</p>
</form>
</div>
{% endblock %}