-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.ejs
18 lines (18 loc) · 912 Bytes
/
edit.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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.tailwindcss.com"></script>
</head>
<body>
<div class="main w-full min-h-screen bg-zinc-900 p-10 text-white"></body>
<a class="text-blue-500 inline-block mb-10" href="/">Go back to Home</a>
<form action="/edit" method="post">
<input class="block w-1/4 rounded-md outline-none px-5 py-2 text-zinc-600 bg-zinc-800" type="text" placeholder="Previous name" name="previous" value="<%= filename %>">
<input class="block w-1/4 rounded-md outline-none px-5 py-2 bg-zinc-800 mt-2" type="text" placeholder="New name" name="new">
<input class="mt-2 bg-yellow-600 px-5 py-2 rounded-md" type="submit" value="Update name">
</form>
</body>
</html>