-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.ejs
More file actions
22 lines (21 loc) · 1015 Bytes
/
edit.ejs
File metadata and controls
22 lines (21 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<div class="w-full min-h-screen bg-zinc-900 text-white p-10" >
<div class="w-full flex justify-end">
<a class="bg-red-500 rounded-md px-3 py-2 text-sm mb-5 inline-block" href="/logout"> Logout</a>
</div>
<h5 class="mb-5">Edit the post.</h5>
<form method="post" action="/update/<%= post._id %>">
<textarea placeholder="what's on your mind ?" class="block p-3 outline-none w-1/3 resize-none bg-transperant border-2 border-zinc-800 rounded-md" name="content"><%=post.content %></textarea>
<input class="px-3 w-40 py-2 text-sm bg-yellow-500 text-black block rounded-md mt-2" type="Submit" value="Update Post">
</form>
</div>
</body>
</html>