index.ejs
1006 Bytes
<!DOCTYPE html>
<html lang="ko">
<head>
<%- include('./head') %>
<style>
.form-group{
margin : 0 auto;
width: 500px;
text-align: center;
font-size:23px;
}
</style>
</head>
<body>
<%- include('./nav') %>
<form action="/category" method="post" name="location">
<!-- <input type="text" id="userLocation" name="userLocation" placeholder="당신의 동네 주소를 입력해주세요(시/구/동)">
<input type="submit" id="search" value="검색"> -->
<br>
<br>
<div class="form-group">
<label for="exampleFormControlInput1">당신이 조사하고 싶은 동네의 주소를 입력하세요!</label>
<input type="text" class="form-control" id="exampleFormControlInput1" name="userLocation" placeholder="당신의 동네 주소를 입력해주세요(시/구/동)"style = "text-align :center;">
</div>
</form>
</body>
</html>