-
Notifications
You must be signed in to change notification settings - Fork 0
/
find.html
121 lines (121 loc) · 6.52 KB
/
find.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>BOUTIQUE</title>
<link rel="stylesheet" href="css/find.css">
</head>
<body>
<div id="container">
<div id="headerpart">
<div id="header">
<div id="loginlist">
<ul>
<li><a href="login.html">로그인</a></li>
<li><a href="apply.html">회원가입</a></li>
<li><a href="faq.php">고객센터</a></li>
</ul>
</div>
<p id="logo"><a href="index.html">BOUTIQUE</a></p>
<div id="menulist">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="castle boutique.html">CASTLE BOUTIQUE</a></li>
<li><a href="bohemian bistro boutique.html">Bohemian Bistro BOUTIQUE</a></li>
<li><a href="pub & grill boutique.html">PUB & GRILL BOUTIQUE</a></li>
</ul>
</div>
</div>
</div>
<div id="midpart">
<div id="midcontent">
<div id="sidemenu">
<ul>
<li id="applyfont">회원가입</li>
<li><a href="login.html">로그인</a></li>
<li><a href="apply.html">회원가입</a></li>
<li id="actpart"><a href="find.html">아이디/비밀번호 찾기</a></li>
</ul>
</div>
<div id="mainmenu">
<div id="midheader">
<h3><img src="img/loginimg1.PNG"> 아이디/비밀번호 찾기</h3>
</div>
<div id="midcenter">
<img src="img/loginimg2.PNG">
<div id="desccenter">
<p>
<span id="title">부티끄 홈페이지에 오신 것을 환영합니다.</span><br>
부티끄 홈페이지의 회원으로 가입하시면<br>메일링/쿠폰 서비스 등 많은 혜택을 받으실 수 있습니다.<br><br><br>
</p>
</div>
</div>
<div id="midform">
<div id="idform">
<form action="findid.php" method="post" name="id" class="formtable">
<table>
<tr>
<th colspan="3" align="left">
<span style="font-size: 18px;color:rgb(187, 35, 35)">아이디찾기</span><br>
회원가입 시, 등록하신 이메일 주소를 입력하세요.
</th>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td style="font-size:12px">이메일 주소</td>
<td colspan="2"><input name="mails1" type="text" autocomplete="off"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td colspan="2" align="right"><input id="getid" class="logbtn1" type="submit" value="확인"></td>
</tr>
<tr>
<td id="getid1"></td>
</tr>
</table>
</form>
</div>
<div id="pwform">
<form action="findpw.php" method="post" name="pw" class="formtable">
<table>
<tr>
<th colspan="3" align="left">
<span style="font-size: 18px;color:rgb(187, 35, 35)">비밀번호찾기</span><br>
아이디와 이메일 주소를 입력하세요.
</th>
</tr>
<tr>
<td style="font-size:12px">아이디</td>
<td colspan="2"><input name="ids" type="text" autocomplete="off"></td>
</tr>
<tr>
<td style="font-size:12px">이메일 주소</td>
<td colspan="2"><input name="mails2" type="text" autocomplete="off"></td>
</tr>
<tr>
<td colspan="2" align="right"><input id="getpw" class="logbtn1" type="submit" value="확인"></td>
</tr>
<tr>
<td id="getid2"></td>
<td id="getpw2"></td>
</tr>
</table>
</form>
</div>
</div>
</div>
</div>
</div>
<div id="footerpart">
<p>
서울특별시 도봉구 도봉1동 615-11 | 사업자 등록번호 123-45-67891<br>
Copyright ⓒ 부티끄 Research Institute. ALL RIGHTS RESERVED
</p>
</div>
</div>
</body>
</html>