directory.pug 615 Bytes
doctype html
html
	head
		meta(charset='utf-8')
		title 파일 업로드
		
	style
		img 
		|	display="block"
		|	max-width="200px"
		|	max-height="200px"
		|	width="auto"
		|	height="auto"
		
		
	body
		- var DirectoryName=directoryName;
		h1=DirectoryName
		h2 파일 업로드
		br
		br
		form(action="./upload/" method="POST" enctype="multipart/form-data")
			input(type="file", name="userImage", multiple="multiple", accept=".jpg, .jpeg")
			input(type="submit", value="업로드")
		br
		//- var ImageList=FileList
			each Image in ImageList
				div(style="margin-right:10px; float:left;")
					img(src=Image)