-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 2.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Buy / Sells Corner - Easly Buy and sell</title>
<!-- css link -->
<link rel="stylesheet" href="./Assets/Style/style.css">
<!-- fontawesome link -->
<script src="https://kit.fontawesome.com/c168b7d2e2.js" crossorigin="anonymous"></script>
<!-- bootstrap link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<!-- navbar section started -->
<section class="main-navbar d-flex align-items-center">
<div class="container d-flex justify-content-between align-items-center">
<div>
<p class="text-light fs-4 mt-2">Buy / Sells Corner</p>
</div>
<div id="loginDiv">
<div id="login" class="nav-content d-flex gap-2">
<button id="logoutBtn" class="btn btn-dark ">Logout</button>
<img id="userIcon"
src="https://wallpapers.com/images/featured/plain-black-background-02fh7564l8qq4m6d.jpg"
alt="userIamge">
</div>
</div>
</div>
</section>
<!-- navbar section ended -->
<!-- card section started -->
<section class="container mt-4">
<h1 class="text-center">Products</h1>
<div id="text_silder" class="text-center" >
<input type="text" id="search_input" placeholder="Search by title...">
</div>
<div class="card_section mt-5 d-flex justify-content-between flex-wrap gap-3">
</div>
</section>
<!-- card section ended -->
<!-- javascript link -->
<script type="module" src="./Scripts/index.js"></script>
<!-- SWEETALERT LINK -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.4.10/dist/sweetalert2.all.min.js"></script>
<!-- bootstrap link -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>