Sudo-JHare c0f16c8971 .well-known updates
updated UI to show .well-known config in server and client pages.
2025-05-26 16:17:39 +10:00

32 lines
1.6 KiB
HTML

{% extends "base.html" %}
{% block title %}About - {{ site_name }}{% endblock %}
{% block content %}
<div class="container mt-4">
<h1 class="text-center mb-4">About FHIRVINE SMART Proxy</h1>
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card shadow-sm">
<div class="card-body">
<p>FHIRVINE is a modular SMART on FHIR Single Sign-On (SSO) Proxy designed to facilitate secure authentication and authorization for FHIR-based applications.</p>
<h5>Features</h5>
<ul>
<li>Register and manage SMART on FHIR applications.</li>
<li>Test client and server-side OAuth2 flows.</li>
<li>Configure proxy settings and FHIR server endpoints.</li>
<li>Support for PKCE and secure token management.</li>
</ul>
<h5>Developer</h5>
<p>Developed by <a href="https://github.com/Sudo-JHare">Sudo-JHare</a>. Source code available on <a href="https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy">GitHub</a>.</p>
<h5>Contact</h5>
<p>Report issues or contribute at <a href="https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy/issues">GitHub Issues</a>.</p>
<div class="text-center mt-4">
<a href="{{ url_for('index') }}" class="btn btn-primary">Back to Home</a>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}