-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmember_find.php
More file actions
34 lines (33 loc) · 867 Bytes
/
member_find.php
File metadata and controls
34 lines (33 loc) · 867 Bytes
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
<?php
include('./dbinit.php');
if(isset($_SESSION['userid'])){
echo "<script>alert('잘못된 접근입니다.'); history.back();</script>";
}else{ ?>
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>회원가입 폼</title>
<style>
* {margin: 0 auto;}
a {color:#333; text-decoration: none;}
.find {text-align:center; width:500px; margin-top:30px; }
</style>
</head>
<body>
<div class="find">
<form method="post" action="member_find_pw.php">
<fieldset>
<legend>비밀번호 찾기</legend>
<table>
<tr>
<td>아이디</td>
<td><input type="text" size="35" name="userid" placeholder="아이디"></td>
</tr>
</table>
<input type="submit" value="비밀번호 찾기" />
</fieldset>
</form>
</div>
</body>
</html>
<?php } ?>