index.ejs
574 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="public/stylesheets/style.css">
<title>KindOfYourDog</title>
</head>
<body>
<h1>Kind of Your Dog</h1>
<div>
<img src = "puppy.jpg">
</div>
<div>
<form enctype="multipart/form-data" method="post" action="upload_receiver">
<input type="file" accept="image/*" name="userfile">
<input type="submit">
</form>
</div>
<div>
<h2>종류를 알고 싶은 개의 사진을 올리세요</h2>
</div>
</body>
</html>