Sudo-JHare c61d907c42
Beta 0.1
initial commit
2025-04-23 21:25:46 +10:00

19 lines
877 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<div class="alert alert-danger text-center" role="alert">
<h4 class="alert-heading"><i class="bi bi-exclamation-triangle-fill me-2"></i>Delete Application: {{ app.app_name }}</h4>
<p>Are you sure you want to delete this application? This action cannot be undone.</p>
<hr>
<form method="POST" action="{{ url_for('delete_app', app_id=app.id) }}">
<button type="submit" class="btn btn-danger me-2">Yes, Delete</button>
<a href="{{ url_for('app_gallery') }}" class="btn btn-secondary">Cancel</a>
</form>
</div>
</div>
</div>
</div>
{% endblock %}