form, input 태그 + etc
그 동안 주먹구구식으로 해결왔던 from, input 태그를 정리해보기로 했다. form - action : submit된 정보들을 서버의 어디로 전송할 것인지 - method : get, post(url로 입력값 노출하고 싶지 않을 때) form에 작성한 내용은 거의 90% post 방식을 사용함 - enctype : file을 제출하는 form일 경우에 필요함. 대개 멀티파트 업로드를 지정하기 위함. multer를 활용한 업로드시에 반드시 지정해줘야 함. 대개 multipart/form-data enctype="multipart/form-data"값을 줌. input - type : text, password, email, textarea, radio, checkbox, reset, hidden, f..