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