mirror of
https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy.git
synced 2025-06-16 05:00:02 +00:00
21 lines
806 B
HTML
21 lines
806 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>Authorization Error</h4>
|
|
<p>An error occurred during the authorization process.</p>
|
|
<hr>
|
|
<p class="mb-0 small"><strong>Details:</strong> {{ error | e }}</p> {# Display the error message #}
|
|
</div>
|
|
<div class="text-center mt-3">
|
|
<a href="{{ url_for('index') }}" class="btn btn-secondary">Return Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|