This repository was archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 2.78 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 2.78 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>운동 매칭 서비스</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./styles/styles.css">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
</head>
<body>
<h1><a href="./index.html"></a>운동 매칭 서비스</h1>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<!-- Navbar 상단 줄 메뉴 링크 부분 -->
<div id="navbar">
<a id="loginBtn" href="auth/login.html" onclick="showSection('login')">로그인</a>
<a id="signupBtn" href="auth/register.html" onclick="showSection('signup')">회원가입</a>
<a id="profileBtn" href="profile/profile_edit.html">회원 정보수정</a>
<a id="logoutBtn" href="#" onclick="logout()" style="display:none;">로그아웃</a>
<a href="quickmatch/quickmatch-list.html">퀵매치</a>
<a href="board/board.html" onclick="showSection('readBoard')">게시판</a>
<a href="playerList/playerList.html" onclick="showSection('playerList')">플레이어 목록</a>
<a href="friend/friend.html" onclick="showSection('playerList')">친구 목록</a>
<div id="notificationDropdown">
<a href="#" onclick="toggleNotificationDropdown()">알림 <span id="notificationCount">0</span></a>
<div id="notificationContent" class="dropdown-content">
<!-- 알림 내용은 여기에 자바스크립트로 동적으로 채워집니다. -->
</div>
</div>
</div>
<!-- 자바스크립트 import 목록 -->
<script src="scripts/login-out.js"></script>
<script src="scripts/index.js" type="module"></script>
<script src="playerList/playerList.js"></script>
<script src="friend/friend.js"></script>
<script>
const btn = document.getElementById('loginBtn');
btn.addEventListener('click', function(){
})
</script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>