diff --git a/README.md b/README.md
index faee118..cade49a 100644
--- a/README.md
+++ b/README.md
@@ -50,11 +50,11 @@ The website is structured according to Flask, organized into the following compo
## Getting Started
1. Clone the repository: `git clone https://github.com/IEEE-VIT/Howzat`
-2. Checkout to a new branch: `git checkout -b my-amazing-feature`
+2. Checkout to a new branch: `git checkout -b branch-name`
3. Make your changes.
4. `git add .`
5. `git commit -m "A short description of the feature."`
-6. `git push origin my-amazing-feature`
+6. `git push origin branch-name`
7. Open a pull request to the curated issues.
To start contributing, [CONTRIBUTING.md](https://github.com/IEEE-VIT/Howzat/blob/main/CONTRIBUTING.md) .
Feel free to fork the repository and submit a pull request with your changes. We welcome improvements, bug fixes, and additional features!
diff --git a/app.py b/app.py
index aac061f..15d4607 100644
--- a/app.py
+++ b/app.py
@@ -9,25 +9,29 @@
with app.app_context():
populate(config)
-
+
+# routing to main page
@app.route('/')
def index():
return render_template('index.html')
+# routing to standings
@app.route('/standings')
def standings():
standings = standings_scapper(SCRAPPING_URL)
return render_template('standings.html', standings=standings)
+# routing to fixtures
@app.route('/fixtures')
def fixtures():
fixtures = config.Fixtures.query.all()
return render_template('fixtures.html', fixtures=fixtures)
+# routing to fan poll
@app.route('/Fan_Poll')
def Fan_Poll():
return render_template('Fan_Poll.html')
if __name__ == "__main__":
app.run(debug=True)
-
\ No newline at end of file
+
diff --git a/templates/Fan_Poll.html b/templates/Fan_Poll.html
index bfd1c9f..819ee73 100644
--- a/templates/Fan_Poll.html
+++ b/templates/Fan_Poll.html
@@ -4,7 +4,7 @@
-