Skip to content
Snippets Groups Projects
Commit 0871e295 authored by Beaumont Mogridge's avatar Beaumont Mogridge :gorilla:
Browse files

Update main.py added contact-us.html and about.html

parent 55addcb3
No related branches found
No related tags found
1 merge request!10Added html pages and user interface
......@@ -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":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment