-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (70 loc) · 2.86 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SKKU Market</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="./frontend/css/indexStyle.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;800&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.validate.min.js"></script>
</head>
<body>
<div class="container">
<header id="header" class="d-flex flex-row justify-content-between">
<a id="title" href="#">
SKKU Market
</a>
<div id="headerBtn-login">
<div id="login">
<a href="./frontend/html/login.html">login</a>
</div>
<div id="userRegister">
<a href="./frontend/html/signup.html">register</a>
</div>
</div>
<div id="headerBtn-logout">
<div id="userInfo">
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="currentColor" class="bi bi-person-fill"
viewBox="0 0 16 16">
<path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" />
</svg>
<a id="userInfoText" href="./frontend/html/myPage.html">user info</a>
</div>
<div id="logout">
<a href="javascript:void(0)" onclick="logout();">logout</a>
</div>
</div>
</header>
<div id="mainContents">
<div id="mainTitle" class="d-flex justify-content-center mt-5">
<h1>Hot Second-Handed Products</h1>
</div>
<div id="newPostDiv" class="d-flex">
<div>
<button id="addNewPost" onclick="onNewPost()">Add new post</button>
</div>
</div>
<div class="productList">
<h1 id="productListPlaceHolder">Nothing </h1>
<h1 id="productListPlaceHolder">to </h1>
<h1 id="productListPlaceHolder">display </h1>
<h1 id="productListPlaceHolder">... </h1>
</div>
<!-- footer -->
<div class="footer">
Copyright 2022. All right reserved.
</div>
</div>
</div>
<script src="./frontend/js/index.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"></script>
</body>
</html>