2020-03-02 02:38:29 +01:00
{{ define "title"}}{{ t "page.new_api_key.title" }}{{ end }}
{{ define "content"}}
< section class = "page-header" >
< h1 > {{ t "page.new_api_key.title" }}< / h1 >
{{ template "settings_menu" dict "user" .user }}
< / section >
< form action = "{{ route " saveAPIKey " } } " 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 >
2020-03-02 02:38:29 +01:00
{{ end }}
< label for = "form-description" > {{ t "form.api_key.label.description" }}< / label >
2021-01-05 05:29:12 +01:00
< input type = "text" name = "description" id = "form-description" value = "{{ .form.Description }}" spellcheck = "false" required autofocus >
2020-03-02 02:38:29 +01:00
< div class = "buttons" >
< button type = "submit" class = "button button-primary" data-label-loading = "{{ t " form . submit . saving " } } " > {{ t "action.save" }}< / button > {{ t "action.or" }} < a href = "{{ route " apiKeys " } } " > {{ t "action.cancel" }}< / a >
< / div >
< / form >
{{ end }}