mirror of
https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy.git
synced 2025-06-15 12:40:01 +00:00
20 lines
922 B
HTML
20 lines
922 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) }}">
|
|
{{ form.hidden_tag() }}
|
|
<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 %} |