flask_photo_scaling_app/app/photo_routes/templates/delete_photo.html

25 lines
568 B
HTML
Raw Normal View History

2021-01-08 14:22:28 -08:00
<style>
.formContainer {
align-items: center;
margin-top: 100px;
}
#submitContainer {
margin-top: 100px;
}
</style>
{% extends "base.html" %}
{% block content %}
<div class='formContainer'>
2021-01-30 06:36:25 -08:00
<form action={{ url_for('d_d.delete', photo_id=photo.id) }} method="post" novalidate>
2021-01-08 14:22:28 -08:00
<h2>Delete Photo?</h2>
<img style="width: 100%;" src={{ photo_url + '480_' + photo['photo_name'] }} alt={{ '480_' + photo['photo_name'] }}>
{{ form.hidden_tag() }}
<p id="submitContainer">{{ form.submit() }}</p>
</form>
</div>
{% endblock %}