blob: a0d53f369e3d043d5a761a6632aa3be321b76074 (
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%}gn-auth: 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%}
|