directory.pug 248 Bytes
doctype html
html
	head
		meta(charset='utf-8')
		title 파일 업로드
	body
		form(action="upload" method="POST" enctype="multipart/form-data")
			input(type="file", name="userfile[]", multiple="multiple")
			input(type="submit", value="전송")