mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 11:37:11 +00:00
27 lines
910 B
HTML
27 lines
910 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="home">
|
|
<h1>Welcome to API Manager</h1>
|
|
|
|
<div id="intro">
|
|
<p>
|
|
This app gives you access to management functionality for the sandbox at <a href="{{ OAUTH_API }}">{{ OAUTH_API }}</a> if the authenticated user has the required permissions, e.g. being a super admin. Currently, you can see consumers, users, calls (list and grouped in a bar chart) and configuration of the sandbox.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
{% if not user.is_authenticated %}
|
|
<div id="login">
|
|
Please authorise against {{ OAUTH_API }}: <a class="btn btn-primary" href="{% url 'oauth-initiate' %}{% if request.GET.next %}?next={{ request.GET.next }}{% endif %}">Proceed</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<p class="text-center">
|
|
<a href="https://openbankproject.com"><img src="https://static.openbankproject.com/images/OBP/OBP_full_web.png" alt="OBP logo" /></a>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|