Skip to content
Snippets Groups Projects

Added html pages and user interface

Merged Beaumont Mogridge requested to merge addedHtmlPagesAndUserInterface into main
1 file
+ 9
0
Compare changes
  • Side-by-side
  • Inline
+ 9
0
@@ -11,6 +11,15 @@ def home():
workspaces = database.get_workspaces()
return render_template("home.html", workspaces = workspaces)
@app.route("/about", methods = ["GET"])
def about():
return render_template("about.html")
@app.route("/contact-us", methods = ["GET"])
def contact():
return render_template("contact-us.html")
@app.route("/map", methods = ["GET"])
def map():
if request.method == "GET":
Loading