mirror of
https://github.com/TrentSPalmer/flask_photo_scaling_app.git
synced 2025-07-04 11:23:16 -07:00
refactor with blueprints
This commit is contained in:
19
app/photo_routes/templates/upload.html
Normal file
19
app/photo_routes/templates/upload.html
Normal 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 %}
|
||||
|
Reference in New Issue
Block a user