rophako/rophako/modules/photo/templates/photos/delete_album.html

14 lines
453 B
HTML

{% extends "layout.html" %}
{% block title %}Delete Album{% endblock %}
{% block content %}
<h1>Delete Album</h1>
<form name="delete" action="{{ url_for('photo.delete_album', album=album) }}" method="POST">
<input type="hidden" name="token" value="{{ csrf_token() }}">
Are you <strong>sure</strong> you want to delete the album <strong>{{ album }}</strong>?<p>
<button type="submit">Yes, Delete This Album</button>
</form>
{% endblock %}