-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJOIN07.html
More file actions
49 lines (42 loc) · 2.03 KB
/
JOIN07.html
File metadata and controls
49 lines (42 loc) · 2.03 KB
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
46
47
48
49
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/Logo.png" type="image/png">
<link rel="stylesheet" href="main.css">
<title>라이선스 확인 완료</title>
</head>
<body>
<nav class="top-nav">
<div class="nav-container">
<div class="logo-area">
<img src="img/logo.png" alt="Logo" class="logo">
<img src="img/letters.svg" alt="Letters" class="letters">
</div>
<div class="login-area">
<span class="login-text" id="loginText">로그인</span>
<div class="user-info" id="userInfo" style="display: none;">
<img src="img/profile.svg" alt="프로필" class="profile-icon">
<span class="user-name">사용자 이름</span>
</div> <!-- 로그인 후 사용자 이름 표시 -->
</div>
</div>
</nav>
<main class="main-content">
<div class="box4">
<h1 class="title" style="margin-bottom: 32px;">라이선스 확인 완료 </h1>
<!-- 추가된 텍스트와 이미지 -->
<div class="complete-message" style="text-align: center; margin-top: 32px;">
<p style="color: var(--Gray-700, #344054); font-family: Pretendard; font-size: 16px; font-style: normal; font-weight: 400; line-height: 24px;">
검사 기기에서 라이선스가 성공적으로 확인되었습니다.<br>이제 서비스의 모든 기능을 자유롭게 이용하실 수 있습니다.
</p>
</div>
<div class="button-container" style="margin-top: 32px;">
<button class="button-normal">홈으로</button>
</div>
</div>
</main>
</div>
</body>
</html>