Add routes and templates

This commit is contained in:
leigh-mil 2018-11-28 17:09:05 -05:00
parent 923313dafa
commit 219f4a1497
3 changed files with 12 additions and 0 deletions

View File

@ -143,3 +143,13 @@ def activity_history():
@bp.route("/about")
def about():
return render_template("about.html")
@bp.route("/csp-environment-access")
def csp_environment_access():
return render_template("csp_environment_access.html")
@bp.route("/jedi-csp-calculator")
def jedi_csp_calculator():
return render_template("jedi_csp_calculator.html")

View File

@ -0,0 +1 @@
<p>You are now being taken to the Cloud Service Provider's console for this environment!</p>

View File

@ -0,0 +1 @@
<p>You are now being taken to the Cloud Service Provider's service and price calculator!</p>