You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
670 B
27 lines
670 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
</head>
|
|
<body>
|
|
<h1>Edit {{item[1]}}</h1>
|
|
<section>
|
|
<form action="/{{item[0]}}?_method=PUT" method="POST">
|
|
<input name="title" type="text" value="{{item[1]}}">
|
|
<textarea name="description">{{item[2]}}</textarea>
|
|
Parent Item ID: <input type="number" name="parent_id" value="{{item[5]}}"/>
|
|
<input type="submit"/>
|
|
</form>
|
|
</section>
|
|
<section>
|
|
<h2>Navigation</h2>
|
|
<a href="/{{item[0]}}">Back to item page</a>
|
|
</section>
|
|
<section>
|
|
<h2>Delete Item</h2>
|
|
</section>
|
|
</body>
|
|
</html>
|