This is my code for application.py
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
@app.route("/zuck")
def zuck():
return render_template("zuck.html")
@app.route("/login")
def login():
return render_template("login.html")
This is pretty much the same as what David types out but when I type flask run in the terminal window, it throws up a bunch of nasty errors Error msg
Please help! What could the issue be?