diff --git a/app.py b/app.py
index 922d91e..9da94f2 100644
--- a/app.py
+++ b/app.py
@@ -322,6 +322,14 @@ def results():
else:
return "No data found."
+@app.route('/analyze')
+def analyze():
+ return render_template('analyze.html');
+
+@app.route('/log_viewer')
+def log_viewer():
+ return render_template('log_viewer.html');
+
@app.route('/download_results')
def download_results():
data_files = glob.glob("data/*.csv")
diff --git a/templates/analyze.html b/templates/analyze.html
new file mode 100644
index 0000000..228c750
--- /dev/null
+++ b/templates/analyze.html
@@ -0,0 +1,16 @@
+{% extends 'base.html' %}
+{% block content %}
+ Analyze
+