login.ejs
1.31 KB
<%- include('./header.ejs') %>
<!-- Header-->
<header class="py-5">
<div class="container px-5">
<div class="row justify-content-center">
<div class="col-lg-8 col-xxl-6">
<div class="text-center my-5">
<h1>로그인</h1>
<br>
<form method="post" action="/login/process">
<table>
<tr>
<td><label>아이디</label></td>
<td><input type="text" name="id"></td>
</tr>
<tr>
<td><label>비밀번호</label></td>
<td><input type="password" name="password"></td>
</tr>
</table>
<input type="submit" value="전송" name="">
</form>
</div>
</div>
</div>
</div>
</header>
<!-- About section one-->
</main>
<!-- Footer-->
<%- include('./footer.ejs') %>