HMTL template not showing in Flask

Solution
@app.route("/instructors")
def instructors():
    return render_template("/instructors.html")

@app.route("/classes")
def classes():
    return render_template("/classes.html")