crablog/site/content/templates/edit-form.html

32 lines
No EOL
1 KiB
HTML

{% extends "base.html" %}
{% block head %}
{{ super() }}
<title>Edit '{{ title }}'</title>
<meta property="og:title" content="Edit '{{ title }}'" />
{% endblock head %}
{% block content %}
<form id="submit-form" action="/api/blog/posts/edit/{{ id }}" method=POST>
<label for="token">Password</label>
<br />
<input id="token" type="password" name="token">
<br />
<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>
{% endblock content %}