aboutsummaryrefslogtreecommitdiff
path: root/gn3/templates/admin/dashboard.html
blob: 52fb7d35476218984cbceeedc8f22f55795f0844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{%extends "base.html"%}

{%block title%}Genenetwork3: Admin Dashboard{%endblock%}

{%block content%}
{{flash_messages()}}

<h1>Genenetwork3: Admin Dashboard</h1>

<ul class="nav">
  <li>
    <a href="{{url_for('oauth2.admin.register_client')}}"
       title="Register a new OAuth2 client.">Register OAuth2 Client</a>
  </li>
  <li>
    <a href="{{url_for('oauth2.admin.list_clients')}}"
       title="List OAuth2 clients.">List OAuth2 Client</a>
  </li>
  <li>
    <a href="{{url_for('oauth2.admin.logout')}}"
       title="Log out of the system.">Logout</a>
  </li>
</ul>
{%endblock%}