From df9d56c35efa70100b4e7fc028bd12e2c5a98b5e Mon Sep 17 00:00:00 2001 From: Pierre Hubert Date: Thu, 27 Apr 2023 18:26:46 +0200 Subject: [PATCH] Split files --- templates/base_page.html | 41 ++++++++++++++++++++++++++++++++ templates/home.html | 51 +++++++--------------------------------- 2 files changed, 50 insertions(+), 42 deletions(-) create mode 100644 templates/base_page.html diff --git a/templates/base_page.html b/templates/base_page.html new file mode 100644 index 0000000..48a06c6 --- /dev/null +++ b/templates/base_page.html @@ -0,0 +1,41 @@ + + + + + + + + + OIDC Test client + + + + + + + + + + +
+
+
+

OIDC test client

+ +
+
+ +
+ {% block content %} + TO_REPLACE + {% endblock content %} +
+ +
+

© Pierre HUBERT

+
+
+ + + + diff --git a/templates/home.html b/templates/home.html index 7134505..fbb1309 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,44 +1,11 @@ - - - +{% extends "base_page.html" %} +{% block content %} - - - - - OIDC Test client +

Test OIDC Authentication flow.

+

Get started testing OIDC authentication flow

+

Redirect URI: {{ redirect_url }}

+

+ Start +

- - - - - - - - - -
-
-
-

OIDC test client

- -
-
- -
-

Test OIDC Authentication flow.

-

Get started testing OIDC authentication flow

-

Redirect URI: {{ redirect_url }}

-

- Start -

-
- - -
- - - - +{% endblock content %} \ No newline at end of file