-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomment.html
58 lines (58 loc) · 2.56 KB
/
comment.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=`">
<title>Yelpcamp</title>
<link rel="stylesheet" href="./css/app.css">
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg bg-white w-100">
<div class="container comment-container">
<img src="./Assets/Logo.svg">
<ul class=" navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item ps-3">
<a class=" nav-link active text-danger fw-bold pb-1 d-none d-xxl-block" aria-current="page" href="#">Home</a>
</li>
</ul>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon">
<i class="fa-solid fa-bars"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item mx-auto">
<a class="nav-link active text-black fw-bold pb-1" aria-current="page" href="#">Chan</a>
</li>
<li class="nav-item mx-auto">
<button class="nav-link text-black fw-bold pt-2 custom-btn">Logout</button>
</li>
</ul>
</div>
</div>
</nav>
<section class="container">
<div class="row justify-content-center vh-100 align-items-center">
<div class=" mt-3"></div>
<div class="col-10 col-sm-10 col-lg-7 col-xl-6">
<h1 class="fw-bold ">Add New Comment</h1>
<div class=" my-4">
<form>
<label for="description" class="form-label text-muted pb-1">Description</label>
<textarea class=" form-control form-background" id="description" rows="10" cols="50" placeholder="This was probably the best camp i've visited this past year. definitely recommend visiting any time soon."></textarea>
</form>
</div>
<div class=" my-4">
<button class="btn btn-dark w-100">Post Comment</button>
</div>
</div>
<footer class="comment-footer">
<img src="./Assets/Logo.svg">
</footer>
</div>
</section>
<script src="./node_modules//bootstrap/dist/js/bootstrap.bundle.js"></script>
</body>
</html>