
인덱스 html 만들고 이걸 파이썬에 render_template('index.html') 넣어서 페이지가 나와야 하는데 app.py 에서 indes.html을 찾을수 없다고 나오는데 이건 어떻게 해야하나요??

아래 사진은 app.py 에서 실행한후 localhost:5000 페이지입니다

app.py 코드 입니다
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
if __name__ == '__main__':
app.run('0.0.0.0', port=5000, debug=True)
index.html 코드 입니다
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1> 나의 웹페이지 </h1>
<button>버튼을 만들자</button>
</body>
</html>
