-
Notifications
You must be signed in to change notification settings - Fork 4
/
level_detail.html
79 lines (78 loc) · 3.44 KB
/
level_detail.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>이음 : 세대와 세대를 이어주는 단어 사전</title>
<link rel="stylesheet" href="../static/css/myPage/level_detail.css">
<link rel="stylesheet" href="../static/css/nav_logout.css">
<link rel="stylesheet" href="/static/css/maincs.css">
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
</head>
<body>
<nav class="navBar">
<div class="navWrap">
<div class="navFirst">
<a class="mainLogo" href="dictionary/list.html"><img src="../static/img/Logo.png" alt="로고 아이콘"></a>
</div>
<div class="navSecond">
<ul class="navList">
<li><a href="dictionary/list.html">사전</a></li>
<li><a href="board/list.html">게시판</a></li>
</ul>
</div>
<div id="logout" class="userInfo">
<div class="navicon">
<ul class="naviconList">
<li>
<a href="alert.html"><img src="../static/img/icon/bell-solid 1.png" alt="종 아이콘"></a>
</li>
<li>
<a href="vocabulary_list.html"><img src="../static/img/icon/book-bookmark-solid 1.png" alt="북마크 아이콘"></a>
</li>
</ul>
</div>
<div class="profileNavDiv">
<img id="navProfile" class="userProfile" src="../static/img/mypage.png" alt="유저프로필 사진">
<ul class="btnWrap">
<li class="profileBrowserBtn">
<a href="myPage.html">마이페이지</a>
</li>
<li class="profileBrowserBtn" onclick="onclickLogOut()">
<p>로그아웃</p>
</li>
</ul>
</div>
</div>
<div id="login" class="userInfo" style="display: none;">
<div class="loginBtn" onclick="onclickLogin()" >
<div class="loginContent">
<img class="loginBtnImg"src="../static/img/kakao.png" alt="카카오톡 로고">
<p class="loginBtnTxt">카카오톡으로 시작하기</p>
</div>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="levelContainer">
<p class="levelTitle">
이음의 등급제도
</p>
<p class="levelTxt">
경험치와 함께 명예를 쌓을 수 있는 이음의 제도입니다.
</p>
<img src="../static/img/level_detail.png" alt="레벨설명">
<p class="levelContent">
경험치를 쌓아서<br>
최고 등급에 도전하세요!
</p>
</div>
<input type="button" class="myBrowserBtn" value="마이페이지로 돌아가기" onclick="location.href='../myPage.html'">
</div>
<script src="/static/js/login.js"></script>
<script src="/static/js/logout.js"></script>
<script src="../static/js/navList_check.js"></script>
</body>
</html>