diff --git a/app.py b/app.py
index c76219f..873b002 100644
--- a/app.py
+++ b/app.py
@@ -3,5 +3,6 @@ from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
-def hello_world():
- return render_template('index.jinja')
\ No newline at end of file
+def start():
+ return render_template('index.jinja')
+
diff --git a/templates/index.jinja b/templates/index.jinja
index 9f28325..70f87d7 100644
--- a/templates/index.jinja
+++ b/templates/index.jinja
@@ -20,7 +20,7 @@