{{define "api_keys.html"}} {{template "head"}} API Keys - Maps Scraper {{template "navbar" .}}
{{if .Success}}
{{.Success}}
{{end}} {{if .Error}}
{{.Error}}
{{end}} {{if .NewKey}}

Your New API Key

Copy this key now. You won't be able to see it again.

{{.NewKey}}
{{end}}

Create API Key

Your API Keys

{{if .APIKeys}}
{{range .APIKeys}} {{end}}
Name Key Prefix Created Last Used Status
{{.Name}} {{.KeyPrefix}}... {{.CreatedAt.Format "Jan 02, 2006"}} {{if .LastUsedAt}}{{.LastUsedAt.Format "Jan 02, 2006"}}{{else}}Never{{end}} {{if .RevokedAt}} Revoked {{else}} Active {{end}} {{if not .RevokedAt}}
{{end}}
{{else}}

No API keys yet. Create one to get started.

{{end}}
{{end}}