2024-02-14 20:05:50 +00:00
|
|
|
<label for="title">Title</label>
|
|
|
|
<input type="text" name="title" value="{{.Title}}" />
|
|
|
|
|
|
|
|
<label for="url">Reply To</label>
|
|
|
|
<input type="text" name="url" value="{{.Url}}" placeholder="https://..." />
|
|
|
|
|
|
|
|
<label for="content">Content</label>
|
2024-02-23 09:15:06 +00:00
|
|
|
<textarea id="contentField" name="content" rows="16">{{.Content}}</textarea></textarea>
|
|
|
|
|
|
|
|
<script src="/static/editor.js"></script>
|
|
|
|
<script>
|
|
|
|
addFileDrop("contentField")
|
|
|
|
</script>
|