mirror of
https://github.com/TrentSPalmer/flask_photo_scaling_app.git
synced 2024-11-16 14:41:29 -08:00
20 lines
491 B
HTML
20 lines
491 B
HTML
{% 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 %}
|
|
|