-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpwchange.php
More file actions
33 lines (33 loc) · 805 Bytes
/
pwchange.php
File metadata and controls
33 lines (33 loc) · 805 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<link href="/css/logincss.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="#">
<title>login page</title>
<style>
form label.reg {
font-size: 14px;
width: 30px;
float: left;
}
</style>
</head>
<body>
<form action="pwchange_re.php" method="POST">
<fieldset>
<legend>비밀번호 초기화</legend>
<ul>
<?php
session_start();
$id = $_SESSION['user_id'];
?>
<h3>
id = <?php echo $id; ?> <br> 비밀번호는 aaaaa로 초기화 됩니다. 비밀번호 변경으로 들어가서 변경해 주세요
</h3>
</ul>
<button type="submit">바꾸기</button>
</fieldset>
</form>
</body>
</html>