-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathreply_delete
More file actions
34 lines (28 loc) · 1.24 KB
/
reply_delete
File metadata and controls
34 lines (28 loc) · 1.24 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
<h1>Delete Reply</h1>
<div class=" card px-6 pt-3 text-md mb-6 [&>*>*>a]:text-sm">
<reply class="flex items-end justify-between py-4">
<div class="flex">
<a href="" class="mr-2"><img class="w-8 h-8 object-cover rounded-full" src="https://pbs.twimg.com/profile_images/508601156767997952/fFTdKUf2_400x400.jpeg"></a>
<div class="w-fit">
<a class="block" href="">
<span class="font-bold hover:underline">Homer</span>
<span class="text-sm text-gray-400">@homersimpson</span>
</a>
<div class="mr-3">This is a reply from Bart</div>
</div>
</div>
<div class="flex items-center gap-4 [&>a:hover]:underline [&>a]:text-sm">
<div class="flex items-center gap-1 text-sm">
<img class="w-5 -mt-1" src="https://img.icons8.com/small/24/000000/fire-heart.png">
1
</div>
<a href="">Like</a>
<a href="">Delete</a>
</div>
</reply>
</div>
<p class="mb-6">Are you sure you want to delete this reply?</p>
<form method='POST'>
<button type="submit">Confirm</button>
<a class="button secondaryAction ml-1" href="">Go Back</a>
</form>