14 lines
525 B
HTML
14 lines
525 B
HTML
{{define "page-content"}}
|
|
<h2>Editor</h2>
|
|
<form>
|
|
<input name="article-title" placeholder="Titel" type="text" />
|
|
<textarea name="article-description" placeholder="Beschreibung"></textarea>
|
|
<textarea name="article-content" placeholder="Artikel"></textarea>
|
|
{{range .}}
|
|
<input id="{{.Name}}" name="tags" type="checkbox" value="{{.ID}}" />
|
|
<label for="{{.Name}}">{{.Name}}</label>
|
|
{{end}}
|
|
<input type="submit" value="Senden" hx-post="/submit-article/" hx-target="#page-content" />
|
|
</form>
|
|
{{end}}
|