diff options
author | Frederick Muriuki Muriithi | 2024-03-15 04:28:26 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-03-15 04:29:24 +0300 |
commit | a6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a (patch) | |
tree | 9950b211af91945e9fcfe658a37dbde77ea25075 /gn3/templates/admin/registered-client.html | |
parent | dd0b29c07017ec398c447ca683dd4b4be18d73b7 (diff) | |
download | genenetwork3-a6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a.tar.gz |
Remove ALL html templates from GeneNetwork3
GN3 provides an API to provide data, and needs no HTML UI.
Diffstat (limited to 'gn3/templates/admin/registered-client.html')
-rw-r--r-- | gn3/templates/admin/registered-client.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/gn3/templates/admin/registered-client.html b/gn3/templates/admin/registered-client.html deleted file mode 100644 index 5c46f4d..0000000 --- a/gn3/templates/admin/registered-client.html +++ /dev/null @@ -1,21 +0,0 @@ -{%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%} |