mirror of
https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy.git
synced 2025-06-15 12:40:01 +00:00
26 lines
1.2 KiB
HTML
26 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Server Endpoints - {{ site_name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<h1 class="text-center mb-4">Server Endpoints</h1>
|
|
<div class="card shadow-sm">
|
|
<div class="card-body">
|
|
<h5>Available Endpoints</h5>
|
|
<ul class="list-group">
|
|
<li class="list-group-item"><strong>Authorization:</strong> <code>/oauth2/authorize</code></li>
|
|
<li class="list-group-item"><strong>Token:</strong> <code>/oauth2/token</code></li>
|
|
<li class="list-group-item"><strong>FHIR Proxy:</strong> <code>/oauth2/proxy/<path></code></li>
|
|
</ul>
|
|
<p class="mt-3"><a href="http://fhirvine.sudo-fhir.au/api-docs" class="btn btn-primary">View API Documentation</a></p>
|
|
<a href="{{ url_for('index') }}" class="btn btn-secondary">Back to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|