-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchIdComplete.html
40 lines (39 loc) · 1.69 KB
/
searchIdComplete.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
<!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 href="assets/bootstrap-5.0.2/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>searchIdComplete</title>
</head>
<body>
<div class="container">
<div id = "header2">
<div class="logo">
<img src="assets/src/O'were 로고.svg" style="width: 190px;">
</div>
<div class="idpwSearch">
<span><a href="login.html">로그인</a></span>
<span>|</span>
<span><a href="join.html">회원가입</a></span>
</div>
</div>
<h2 class="headline">아이디 찾기</h2>
<div class="idInfo">
<div class="idInfoWrap">
<p class="description">입력하신 정보와 일치하는 아이디 정보입니다.</p>
<p class="id">owere1234</p>
</div>
<div class="d-grid gap-2">
<button class="btn gradientButtons goLogin" type="submit" onclick="location.href='searchIdComplete.html'">로그인 하기</button>
</div>
</div>
</div>
<script src="assets/bootstrap-5.0.2/js/bootstrap.js"></script>
<script src="assets/js/javascript.js"></script>
</body>
</html>