{{define "account.html"}}{{template "base" .}}{{end}} {{define "content"}}

Account

Settings

{{.Data.Email}} · {{.Data.Role}}

Password

Update the password for your account.

Public forgot-password is deferred until SMTP support is added. Admins can generate reset links.

Access tokens

Personal tokens act as your account for the API and CLI. They never expire until you delete them.

{{if .Data.Error}}

{{.Data.Error}}

{{end}} {{if .Data.NewToken}}

Copy your new token now — it won't be shown again.

{{.Data.NewToken}}

Use it as a bearer token: Authorization: Bearer {{.Data.NewToken}}

{{end}}
{{if .Data.Tokens}}
{{range .Data.Tokens}} {{end}}
NameCreatedLast used
{{.Name}} {{.CreatedAt}} {{.LastUsedAt}}
{{else}}

No tokens yet. Generate one above to use the API or CLI.

{{end}}
{{end}}