-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.56 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
<!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=1.0">
<title>Interactive comgit ment section</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<main class="container">
<div class="comment-feed" id="commentsFeed">
</div>
<div class="newComment-wrapper">
<img class="current-profile" id="currentProfileImg" src="images/avatars/image-maxblagun.png" alt="">
<textarea class="new-comment-input" id="newCommentInput" name="comment" placeholder="Add a comment"
rows="4"></textarea>
<button class="comment-submit" data-type="primary" id="commentSubmit">SEND</button>
</div>
</main>
<div class="modal" id="modal">
<div class="modal-box">
<h3 class="fw-bold">Delete comment</h3>
<p class="text-clr-neutral-blue-300">Are you sure you want to delete this comment? This will remove the comment
and can't be undone.</p>
<div class="modal-buttons">
<button data-type="primary" data-color="grey" id="closeModalButton">NO, CANCEL</button>
<button id="deleteCommentButton" data-type="primary" data-color="red" data-commentToDelete=""
data-parentID="">YES,
DELETE</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>