forked from SMU-LIKELION-HACKATHON-2TEAM/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
searchId.html
45 lines (38 loc) · 1.2 KB
/
searchId.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
42
43
44
45
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>아이디 찾기</title>
<link rel="stylesheet" href="css/search-id.css" />
<link rel="icon" href="img/logo.png" />
</head>
<body>
<section class="box">
<img class="logo" src="img/logo1.png" />
<div class="search-main">
<img
src="img/search.png"
class="search-img"
>
<h1 style="margin: 0 0 0 3%;">아이디 찾기</h1>
</div>
<form class="consumSignup-container">
<h4>이메일</h4>
<input
class="email"
type="text"
name="email"
placeholder="이메일 입력*"
/>
<br />
<div
style="color:red; font-size:small">
입력하신 이메일 정보가 존재하지않습니다.
</div>
<button type='button' class="search-btn" href="#">인증 메일 발송</button>
</form>
</section>
<!-- <script src="../js/login.js" defer></script> -->
</body>
</html>