-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
37 lines (29 loc) · 1.28 KB
/
post.html
File metadata and controls
37 lines (29 loc) · 1.28 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Post Details</title>
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/@supabase/supabase-js@2"></script>
<script>
const supabaseUrl = 'https://oacwydxlrrctxmavodmt.supabase.co';
const supabaseKey = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im9hY3d5ZHhscnJjdHhtYXZvZG10Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3MjUwNTY5NDgsImV4cCI6MjA0MDYzMjk0OH0.tHHtD_AbhMJAI6KtfIQJWHIU7w7gLrlQPCX_56kAVXI'; // Replace with your Supabase key
window.supabase = supabase.createClient(supabaseUrl, supabaseKey);
</script>
</head>
<body>
<h1><a href="index.html" style="text-decoration: none; color: inherit;">⚠️LERT ME</a></h1>
<div id="app">
<div id="post-details"></div>
<form id="comment-form">
<textarea id="comment-text" placeholder="Type your comment here..." required></textarea>
<button type="submit">Comment</button>
</form>
<h3>Comments</h3>
<div id="comments-list"></div>
<!-- Input box moved to the bottom -->
</div>
<script src="post.js"></script>
</body>
</html>