diff --git a/atst/routes/__init__.py b/atst/routes/__init__.py index 7bea9305..339cd219 100644 --- a/atst/routes/__init__.py +++ b/atst/routes/__init__.py @@ -147,9 +147,9 @@ def about(): @bp.route("/csp-environment-access") def csp_environment_access(): - return render_template("csp_environment_access.html") + return render_template("mock_csp.html", text="console for this environment") @bp.route("/jedi-csp-calculator") def jedi_csp_calculator(): - return render_template("jedi_csp_calculator.html") + return render_template("mock_csp.html", text="service and price calculator") diff --git a/static/img/cloud_background.jpg b/static/img/cloud_background.jpg new file mode 100644 index 00000000..07c57b07 Binary files /dev/null and b/static/img/cloud_background.jpg differ diff --git a/templates/csp_environment_access.html b/templates/csp_environment_access.html deleted file mode 100644 index f2fdde60..00000000 --- a/templates/csp_environment_access.html +++ /dev/null @@ -1,4 +0,0 @@ -

- Cloud -

-

You are now being taken to the Cloud Service Provider's console for this environment!

diff --git a/templates/jedi_csp_calculator.html b/templates/jedi_csp_calculator.html deleted file mode 100644 index 672e0ad4..00000000 --- a/templates/jedi_csp_calculator.html +++ /dev/null @@ -1,4 +0,0 @@ -

- Cloud -

-

You are now being taken to the Cloud Service Provider's service and price calculator!

diff --git a/templates/mock_csp.html b/templates/mock_csp.html new file mode 100644 index 00000000..44f56437 --- /dev/null +++ b/templates/mock_csp.html @@ -0,0 +1,24 @@ +
+ + + + +

You are now being taken to the Cloud Service Provider's {{ text }}!

+
+ +