forked from SMU-LIKELION-HACKATHON-2TEAM/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
findPassword.html
27 lines (27 loc) · 1.01 KB
/
findPassword.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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/checkPassword.css">
<link rel="icon" href="img/logo.png">
<script src="https://kit.fontawesome.com/ba49d39b5e.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
<title>비밀번호 확인 페이지</title>
</head>
<body>
<div class="box">
<img src="img/findPassword.png" >
<p>가게 승인번호 확인</p>
<div class="inputbox">
<input type="text" placeholder="가게 비밀번호를 입력하세요.">
</div>
<div
style="color:red; font-size:small; margin-left: 10%;margin-top: 4px;">
아이디 또는 비밀번호가 일치하지 않습니다.
</div>
<div class="button">입력하기</div>
</div>
</body>
</html>