42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta property="og:title" content="Edit '{{ title }}'"/>
|
|
<meta property="og:image" content="/static/site-image.png" />
|
|
|
|
<title>Edit '{{ title }}'</title>
|
|
<link rel="stylesheet" href="/static/css/blog.css">
|
|
<link rel="shortcut icon" type="image/jpg" href="/static/favicon.ico"/>
|
|
</head>
|
|
<body>
|
|
<div id="cookie-block" hidden>
|
|
<p>Please set your token cookie first.</p>
|
|
<input id="set-token" type="text" name="set-token">
|
|
<button onclick="setTokenCookie()">Set Token Cookie</button>
|
|
</div>
|
|
<button onclick="clearTokenCookie()">Clear Token Cookie</button>
|
|
|
|
<form id="submit-form" action="/api/blog/posts/edit/{{ id }}" method=POST>
|
|
<input class="token" type="text" name="token" hidden>
|
|
<label for="title">Title</label>
|
|
<textarea id="submit-title" type="text" name="title">{{ title }}</textarea>
|
|
<br>
|
|
<label for="submit-body">Content</label>
|
|
<textarea id="submit-body" type="text" name="body">{{ body }}</textarea>
|
|
<br>
|
|
<button id="submit-button" type="submit">Edit post</button>
|
|
</form>
|
|
|
|
<form action="/api/blog/posts/hide/{{ id }}" method="POST">
|
|
<input class="token" type="text" name="token" hidden>
|
|
<button type="submit">Hide post</button>
|
|
</form>
|
|
<form action="/api/blog/posts/delete/{{ id }}" method="POST">
|
|
<input class="token" type="text" name="token" hidden>
|
|
<button type="submit">Delete post</button>
|
|
</form>
|
|
<script src="/static/js/blog.js"></script>
|
|
</body>
|
|
</html>
|