-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsignUp.html
47 lines (45 loc) · 1.97 KB
/
signUp.html
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
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<script language="javascript" type="text/javascript" src="include/head.js"></script>
<meta charset="utf-8">
<title>민사페이 부스 가입</title>
</head>
<body>
<script language="javascript" type="text/javascript" src="include/header.js"></script>
<h2>운영진 회원가입</h2>
<h3 class = "dataShower">약관</h3>
<script language="javascript" type="text/javascript" src="include/boothSignupAgreement.js"></script>
<form action = "signUp_check.php" method="POST">
<table>
<tr>
<th><h3 class = "dataShower">아이디</h3></th>
</tr>
<tr>
<th><input type="text" placeholder = "아이디를 입력해주세요." name="id", required/></th>
</tr>
<tr>
<th><h3 class = "dataShower">비밀번호</h3></th>
</tr>
<tr>
<th><input type="password" placeholder = "비밀번호를 입력해주세요." name="pw", required/></th>
</tr>
<tr>
<th><input type="password" placeholder = "비밀번호를 다시 입력해주세요." name="pwc", required/></th>
</tr>
<tr>
<th>
<h3 class = "dataShower">부스 이름</h3>
</th>
</tr>
<tr>
<th>
<input type="text" placeholder = "부스의 공식 이름을 입력해주세요." name="booth", required/>
</th>
</tr>
</table>
<button type="submit" class="button1" value="가입하기">약관 동의 및 부스 가입하기</button>
</form>
<script language="javascript" type="text/javascript" src="include/footer.js"></script>
</body>
</html>