aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/admin/registered-client.html
blob: 5c46f4dc0eb137a03da90485cc304699d2964ada (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 pagetitle%}Register OAuth2 Client{%endblock%}

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

<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%}