mirror of
https://github.com/Sudo-JHare/FHIRVINE-Smart-Proxy.git
synced 2025-06-15 12:40:01 +00:00
21 lines
927 B
HTML
21 lines
927 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Proxy Settings - {{ 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">Proxy Settings</h1>
|
|
<div class="card shadow-sm">
|
|
<div class="card-body">
|
|
<h5>FHIR Server URL</h5>
|
|
<p class="text-muted">Current FHIR Server: <code>{{ fhir_server_url }}</code></p>
|
|
<p class="text-warning">Editing the FHIR server URL requires environment variable changes. Please update <code>FHIR_SERVER_URL</code> in your <code>.env</code> file and restart the application.</p>
|
|
<a href="{{ url_for('index') }}" class="btn btn-primary">Back to Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |