-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfind_password.html
41 lines (39 loc) · 1.24 KB
/
find_password.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="../css/find_password.css" />
<script src="../js/api.js"></script>
</head>
<body>
<div class="find_password_header">
<img
src="../image/goback.png"
alt="goback"
class="find_password_header_goback_btn"
/>
<img
src="../image/logo.png"
alt="find_password_logo"
class="find_password_header_logo"
/>
</div>
<main>
<div class="find_password_main_title">비밀번호를 잊으셨나요?</div>
<div class="find_password_main_document">
이메일 주소를 입력하시면 계정의 비밀번호를 새롭게 변경할 수 있는 링크를
보내드립니다
</div>
<input
type="email"
class="find_password_main_input"
placeholder=" Email"
/>
<button class="find_password_main_btn">비밀번호 변경 링크 전송</button>
</main>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="../js/find_password.js"></script>
</html>