Chris Reidy

Results 2 comments of Chris Reidy

Had the same issue. in your __init__.py, in the "create_app" function definition you'll need to correct: app = Flask(__name__) to app = Flask(__name__,template_folder="template") Link to the solution [source](https://sites.miis.edu/dreadkingrathalos/2020/05/20/solutions-of-jinja2-exceptions-templatenotfound-index-html/#:~:text=The%20error%20message%20was%20due,folder%20name%20it%20%E2%80%9CTemplates%E2%80%9D.)

Had the same issue. in your init.py, in the "create_app" function definition you'll need to correct: app = Flask(name) to app = Flask(name,template_folder="template") Link to the solution [source](https://sites.miis.edu/dreadkingrathalos/2020/05/20/solutions-of-jinja2-exceptions-templatenotfound-index-html/#:~:text=The%20error%20message%20was%20due,folder%20name%20it%20%E2%80%9CTemplates%E2%80%9D.)