aboutsummaryrefslogtreecommitdiff
path: root/gn3/templates/admin/registered-client.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-03-15 04:28:26 +0300
committerFrederick Muriuki Muriithi2024-03-15 04:29:24 +0300
commita6ef95af5b6b072acdc02ba4db08c1bdda4c1f1a (patch)
tree9950b211af91945e9fcfe658a37dbde77ea25075 /gn3/templates/admin/registered-client.html
parentdd0b29c07017ec398c447ca683dd4b4be18d73b7 (diff)
downloadgenenetwork3-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.html21
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%}