2018-09-22 03:53:29 +02:00
{{ define "title"}}{{ t "page.new_category.title" }}{{ end }}
2017-11-20 06:10:04 +01:00
{{ define "content"}}
< section class = "page-header" >
2018-09-22 03:53:29 +02:00
< h1 > {{ t "page.new_category.title" }}< / h1 >
2017-11-20 06:10:04 +01:00
< ul >
< li >
2022-01-18 06:00:32 +01:00
< a href = "{{ route " categories " } } " > {{ icon "categories" }}{{ t "menu.categories" }}< / a >
2017-11-20 06:10:04 +01:00
< / li >
< / ul >
< / section >
< form action = "{{ route " saveCategory " } } " method = "post" autocomplete = "off" >
< input type = "hidden" name = "csrf" value = "{{ .csrf }}" >
{{ if .errorMessage }}
2023-10-22 04:50:29 +02:00
< div class = "alert alert-error" > {{ .errorMessage }}< / div >
2017-11-20 06:10:04 +01:00
{{ end }}
2018-09-22 03:53:29 +02:00
< label for = "form-title" > {{ t "form.category.label.title" }}< / label >
2017-11-20 06:10:04 +01:00
< input type = "text" name = "title" id = "form-title" value = "{{ .form.Title }}" required autofocus >
< div class = "buttons" >
2018-09-22 03:53:29 +02:00
< button type = "submit" class = "button button-primary" data-label-loading = "{{ t " form . submit . saving " } } " > {{ t "action.save" }}< / button > {{ t "action.or" }} < a href = "{{ route " categories " } } " > {{ t "action.cancel" }}< / a >
2017-11-20 06:10:04 +01:00
< / div >
< / form >
{{ end }}