signup.ejs
1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<%- 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="/signup/process">
<table>
<tr>
<td><label>E-mail</label></td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td><label>이름</label></td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td><label>아이디</label></td>
<td><input type="text" name="id"></td>
</tr>
<tr>
<td><label>비밀번호</label></td>
<td><input type="text" name="password"></td>
</tr>
</table>
<input type="submit" value="전송" name="">
</form>
</div>
</div>
</div>
</div>
</header>
<!-- About section one-->
</main>
<!-- Footer-->
<%- include('./footer.ejs') %>