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

{%block title%}Genenetwork3: Register OAuth2 Client{%endblock%}

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

<h1>Genenetwork3: Register OAuth2 Client</h1>

<p>Client has been registered successfully.</p>

<p>Please save the following client details somewhere. There is no way to
  retrieve the the <strong>CLIENT_SECRET</strong> once you leave this page.</p>

<dl>
  <dt>CLIENT_ID</dt>
  <dd>{{client.client_id}}</dd>
  <dt>CLIENT_SECRET</dt>
  <dd>{{client_secret}}</dd>
</dl>
{%endblock%}