vsc code로 새로운 폴더를 생성후 static 폴더와 static 폴더 안에 css 폴더를 생성하여 bootstrap에서 가져온 sample을 넣어 주었다. main.py 에 아래와 같이 입력후 from flask import Flask, render_template, request, redirect, url_for import pymysql app = Flask(__name__) # name에는 내가 실행시키는 파일이 들어간다. @app.route('/') # web: 주소->127.0.0.1:5000/ , localhost:500/ def index(): return render_template("index.html") # localhost/signup @app.route('/signup/', ..