put-annotations-form.html
HTML document, ASCII text
1{% extends "default.html" %} 2{% block title %}Submit JSON annotations | {{ site_name }}{% endblock %} 3{% block content %} 4<x-frame style="--width: 768px"> 5<form method="POST" class="vbox"> 6<h1>Submit JSON annotations: {{ resource.title }}</h1> 7<p> 8Submit JSON annotations for the picture <a href="/picture/{{ resource.id }}">{{ resource.title }}</a>. 9Check the documentation for the expected format. 10</p> 11<label> 12<span class="required-asterisk">JSON annotations</span> 13<textarea name="annotations" required rows="30"></textarea> 14</label> 15<button type="submit">Submit</button> 16</form> 17</x-frame> 18{% endblock %}