-
Notifications
You must be signed in to change notification settings - Fork 1
/
findPw.html
27 lines (27 loc) · 1 KB
/
findPw.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>비밀번호 찾기</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/member.css" />
</head>
<body>
<div class="container">
<div class="findTitle">
<img class="backIcon" src="img/backPage.svg" />
<img src="img/logo.svg" />
</div>
<div class="findBody">
<h3>비밀번호 찾기</h3>
<p>이메일로 임시 비밀번호가 전송됩니다.</p>
<input type="text" placeholder="이메일" id="findPwEmail"/>
<button class="sendPwBt" type="button" onclick="sendFindEmail();">
임시 비밀번호 전송
</button>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/member.js"></script>
</html>