| 12345678910111213141516171819202122232425 |
- {{ define "title"}}{{ t "page.new_api_key.title" }}{{ end }}
- {{ define "page_header"}}
- <section class="page-header" aria-labelledby="page-header-title">
- <h1 id="page-header-title">{{ t "page.new_api_key.title" }}</h1>
- {{ template "settings_menu" dict "user" .user }}
- </section>
- {{ end }}
- {{ define "content"}}
- <form action="{{ route "saveAPIKey" }}" method="post" autocomplete="off">
- <input type="hidden" name="csrf" value="{{ .csrf }}">
- {{ if .errorMessage }}
- <div role="alert" class="alert alert-error">{{ .errorMessage }}</div>
- {{ end }}
- <label for="form-description">{{ t "form.api_key.label.description" }}</label>
- <input type="text" name="description" id="form-description" value="{{ .form.Description }}" spellcheck="false" required autofocus>
- <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 }}
|