aboutsummaryrefslogtreecommitdiff
path: root/app/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/views.py')
-rw-r--r--app/views.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/views.py b/app/views.py
index 67bd94f..a3c75c8 100644
--- a/app/views.py
+++ b/app/views.py
@@ -23,6 +23,11 @@ def home():
"""Render website's home page."""
return render_template('home.html')
+@app.route('/About')
+def about():
+ """Render about page."""
+ return render_template('about.html')
+
@app.route('/basic-form', methods=['GET', 'POST'])
def basic_form():